mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibJS: Correctly forward declare "Argument" as a struct
This commit is contained in:
parent
9430918026
commit
a502ba73dc
Notes:
sideshowbarker
2024-07-19 07:57:41 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a502ba73dc5
1 changed files with 2 additions and 1 deletions
|
@ -29,7 +29,6 @@
|
|||
namespace JS {
|
||||
|
||||
class ASTNode;
|
||||
class Argument;
|
||||
class Cell;
|
||||
class Error;
|
||||
class Exception;
|
||||
|
@ -48,6 +47,8 @@ class Statement;
|
|||
class Value;
|
||||
enum class DeclarationType;
|
||||
|
||||
struct Argument;
|
||||
|
||||
template<class T>
|
||||
class Handle;
|
||||
|
||||
|
|
Loading…
Reference in a new issue