summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/AST.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/AST.h')
-rw-r--r--Libraries/LibJS/AST.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Libraries/LibJS/AST.h b/Libraries/LibJS/AST.h
index 6f6d7eec59..cfd6d06aa8 100644
--- a/Libraries/LibJS/AST.h
+++ b/Libraries/LibJS/AST.h
@@ -131,6 +131,9 @@ private:
class Expression : public ASTNode {
};
+class Declaration : public Statement {
+};
+
class FunctionNode {
public:
const FlyString& name() const { return m_name; }
@@ -154,7 +157,7 @@ private:
};
class FunctionDeclaration final
- : public Statement
+ : public Declaration
, public FunctionNode {
public:
static bool must_have_name() { return true; }
@@ -576,7 +579,7 @@ enum class DeclarationType {
Const,
};
-class VariableDeclaration : public Statement {
+class VariableDeclaration : public Declaration {
public:
VariableDeclaration(NonnullRefPtr<Identifier> name, RefPtr<Expression> initializer, DeclarationType declaration_type)
: m_declaration_type(declaration_type)