/* * Copyright (c) 2020-2021, Andreas Kling * Copyright (c) 2020-2022, Linus Groh * Copyright (c) 2021-2022, David Tuin * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace JS { class Declaration; class ClassDeclaration; class FunctionDeclaration; class Identifier; class MemberExpression; class VariableDeclaration; template static inline NonnullRefPtr create_ast_node(SourceRange range, Args&&... args) { return adopt_ref(*new T(range, forward(args)...)); } class ASTNode : public RefCounted { public: virtual ~ASTNode() { } virtual Completion execute(Interpreter&, GlobalObject&) const = 0; virtual void generate_bytecode(Bytecode::Generator&) const; virtual void dump(int indent) const; SourceRange const& source_range() const { return m_source_range; } SourceRange& source_range() { return m_source_range; } String class_name() const; template bool fast_is() const = delete; virtual bool is_new_expression() const { return false; } virtual bool is_member_expression() const { return false; } virtual bool is_super_expression() const { return false; } virtual bool is_function_expression() const { return false; } virtual bool is_class_expression() const { return false; } virtual bool is_expression_statement() const { return false; } virtual bool is_identifier() const { return false; } virtual bool is_scope_node() const { return false; } virtual bool is_program() const { return false; } virtual bool is_function_declaration() const { return false; } protected: explicit ASTNode(SourceRange source_range) : m_source_range(source_range) { } private: SourceRange m_source_range; }; class Statement : public ASTNode { public: explicit Statement(SourceRange source_range) : ASTNode(source_range) { } }; // 14.13 Labelled Statements, https://tc39.es/ecma262/#sec-labelled-statements class LabelledStatement : public Statement { public: LabelledStatement(SourceRange source_range, FlyString label, NonnullRefPtr labelled_item) : Statement(source_range) , m_label(move(label)) , m_labelled_item(move(labelled_item)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; FlyString const& label() const { return m_label; } FlyString& label() { return m_label; } NonnullRefPtr const& labelled_item() const { return m_labelled_item; } NonnullRefPtr& labelled_item() { return m_labelled_item; } private: FlyString m_label; NonnullRefPtr m_labelled_item; }; class LabelableStatement : public Statement { public: using Statement::Statement; Vector const& labels() const { return m_labels; } virtual void add_label(FlyString string) { m_labels.append(move(string)); } protected: Vector m_labels; }; class IterationStatement : public Statement { public: using Statement::Statement; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const = 0; }; class EmptyStatement final : public Statement { public: explicit EmptyStatement(SourceRange source_range) : Statement(source_range) { } Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; }; class ErrorStatement final : public Statement { public: explicit ErrorStatement(SourceRange source_range) : Statement(source_range) { } Completion execute(Interpreter&, GlobalObject&) const override { return {}; } }; class ExpressionStatement final : public Statement { public: ExpressionStatement(SourceRange source_range, NonnullRefPtr expression) : Statement(source_range) , m_expression(move(expression)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; Expression const& expression() const { return m_expression; }; private: virtual bool is_expression_statement() const override { return true; } NonnullRefPtr m_expression; }; template concept ThrowCompletionOrVoidFunction = requires(Func func, Args... args) { { func(args...) } ->SameAs>; }; template class ThrowCompletionOrVoidCallback : public Function(Args...)> { public: template ThrowCompletionOrVoidCallback(CallableType&& callable) requires(VoidFunction) : Function(Args...)>([callable = forward(callable)](Args... args) { callable(args...); return ThrowCompletionOr {}; }) { } template ThrowCompletionOrVoidCallback(CallableType&& callable) requires(ThrowCompletionOrVoidFunction) : Function(Args...)>(forward(callable)) { } }; class ScopeNode : public Statement { public: template T& append(SourceRange range, Args&&... args) { auto child = create_ast_node(range, forward(args)...); m_children.append(move(child)); return static_cast(m_children.last()); } void append(NonnullRefPtr child) { m_children.append(move(child)); } NonnullRefPtrVector const& children() const { return m_children; } virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; Completion evaluate_statements(Interpreter& interpreter, GlobalObject& global_object) const; void add_var_scoped_declaration(NonnullRefPtr variables); void add_lexical_declaration(NonnullRefPtr variables); void add_hoisted_function(NonnullRefPtr declaration); [[nodiscard]] bool has_lexical_declarations() const { return !m_lexical_declarations.is_empty(); } [[nodiscard]] bool has_var_declarations() const { return !m_var_declarations.is_empty(); } [[nodiscard]] size_t var_declaration_count() const { return m_var_declarations.size(); } [[nodiscard]] size_t lexical_declaration_count() const { return m_lexical_declarations.size(); } ThrowCompletionOr for_each_lexically_scoped_declaration(ThrowCompletionOrVoidCallback&& callback) const; ThrowCompletionOr for_each_lexically_declared_name(ThrowCompletionOrVoidCallback&& callback) const; ThrowCompletionOr for_each_var_declared_name(ThrowCompletionOrVoidCallback&& callback) const; ThrowCompletionOr for_each_var_function_declaration_in_reverse_order(ThrowCompletionOrVoidCallback&& callback) const; ThrowCompletionOr for_each_var_scoped_variable_declaration(ThrowCompletionOrVoidCallback&& callback) const; void block_declaration_instantiation(GlobalObject& global_object, Environment* environment) const; ThrowCompletionOr for_each_function_hoistable_with_annexB_extension(ThrowCompletionOrVoidCallback&& callback) const; protected: explicit ScopeNode(SourceRange source_range) : Statement(source_range) { } private: virtual bool is_scope_node() const final { return true; } NonnullRefPtrVector m_children; NonnullRefPtrVector m_lexical_declarations; NonnullRefPtrVector m_var_declarations; NonnullRefPtrVector m_functions_hoistable_with_annexB_extension; }; // 2.9 ModuleRequest Records, https://tc39.es/proposal-import-assertions/#sec-modulerequest-record struct ModuleRequest { struct Assertion { String key; String value; }; ModuleRequest() = default; explicit ModuleRequest(FlyString specifier) : module_specifier(move(specifier)) { } ModuleRequest(FlyString module_specifier, Vector assertions); void add_assertion(String key, String value) { assertions.empend(move(key), move(value)); } FlyString module_specifier; // [[Specifier]] Vector assertions; // [[Assertions]] }; class ImportStatement final : public Statement { public: // ImportEntry Record, https://tc39.es/ecma262/#table-importentry-record-fields struct ImportEntry { FlyString import_name; // [[ImportName]] if a String FlyString local_name; // [[LocalName]] bool is_namespace { false }; // [[ImportName]] if `namespace-object` ImportEntry(FlyString import_name_, FlyString local_name_, bool is_namespace_ = false) : import_name(move(import_name_)) , local_name(move(local_name_)) , is_namespace(is_namespace_) { VERIFY(!is_namespace || import_name.is_null()); } ModuleRequest const& module_request() const { VERIFY(m_module_request); return *m_module_request; } private: friend ImportStatement; ModuleRequest* m_module_request; // [[ModuleRequest]] }; explicit ImportStatement(SourceRange source_range, ModuleRequest from_module, Vector entries = {}) : Statement(source_range) , m_module_request(move(from_module)) , m_entries(move(entries)) { for (auto& entry : m_entries) entry.m_module_request = &m_module_request; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; bool has_bound_name(FlyString const& name) const; Vector const& entries() const { return m_entries; } ModuleRequest const& module_request() const { return m_module_request; } ModuleRequest& module_request() { return m_module_request; } private: ModuleRequest m_module_request; Vector m_entries; }; class ExportStatement final : public Statement { public: static FlyString local_name_for_default; // ExportEntry Record, https://tc39.es/ecma262/#table-exportentry-records struct ExportEntry { enum class Kind { NamedExport, ModuleRequestAll, ModuleRequestAllButDefault, } kind; FlyString export_name; // [[ExportName]] FlyString local_or_import_name; // Either [[ImportName]] or [[LocalName]] ExportEntry(Kind export_kind, FlyString export_name_, FlyString local_or_import_name_) : kind(export_kind) , export_name(move(export_name_)) , local_or_import_name(move(local_or_import_name_)) { } bool is_module_request() const { return m_module_request != nullptr; } static ExportEntry indirect_export_entry(ModuleRequest const& module_request, FlyString export_name, FlyString import_name) { ExportEntry entry { Kind::NamedExport, move(export_name), move(import_name) }; entry.m_module_request = &module_request; return entry; } ModuleRequest const& module_request() const { VERIFY(m_module_request); return *m_module_request; } private: ModuleRequest const* m_module_request { nullptr }; // [[ModuleRequest]] friend ExportStatement; public: static ExportEntry named_export(FlyString export_name, FlyString local_name) { return ExportEntry { Kind::NamedExport, move(export_name), move(local_name) }; } static ExportEntry all_but_default_entry() { return ExportEntry { Kind::ModuleRequestAllButDefault, {}, {} }; } static ExportEntry all_module_request(FlyString export_name) { return ExportEntry { Kind::ModuleRequestAll, move(export_name), {} }; } }; ExportStatement(SourceRange source_range, RefPtr statement, Vector entries, bool is_default_export, ModuleRequest module_request) : Statement(source_range) , m_statement(move(statement)) , m_entries(move(entries)) , m_is_default_export(is_default_export) , m_module_request(move(module_request)) { if (!m_module_request.module_specifier.is_null()) { for (auto& entry : m_entries) entry.m_module_request = &m_module_request; } } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; bool has_export(FlyString const& export_name) const; bool has_statement() const { return m_statement; } Vector const& entries() const { return m_entries; } bool is_default_export() const { return m_is_default_export; } ASTNode const& statement() const { VERIFY(m_statement); return *m_statement; } ModuleRequest& module_request() { VERIFY(!m_module_request.module_specifier.is_null()); return m_module_request; } private: RefPtr m_statement; Vector m_entries; bool m_is_default_export { false }; ModuleRequest m_module_request; }; class Program final : public ScopeNode { public: enum class Type { Script, Module }; explicit Program(SourceRange source_range, Type program_type) : ScopeNode(source_range) , m_type(program_type) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; bool is_strict_mode() const { return m_is_strict_mode; } void set_strict_mode() { m_is_strict_mode = true; } Type type() const { return m_type; } void append_import(NonnullRefPtr import_statement) { m_imports.append(import_statement); append(import_statement); } void append_export(NonnullRefPtr export_statement) { m_exports.append(export_statement); append(export_statement); } NonnullRefPtrVector const& imports() const { return m_imports; } NonnullRefPtrVector const& exports() const { return m_exports; } NonnullRefPtrVector& imports() { return m_imports; } NonnullRefPtrVector& exports() { return m_exports; } bool has_top_level_await() const { return m_has_top_level_await; } void set_has_top_level_await() { m_has_top_level_await = true; } ThrowCompletionOr global_declaration_instantiation(Interpreter& interpreter, GlobalObject& global_object, GlobalEnvironment& global_environment) const; private: virtual bool is_program() const override { return true; } bool m_is_strict_mode { false }; Type m_type { Type::Script }; NonnullRefPtrVector m_imports; NonnullRefPtrVector m_exports; bool m_has_top_level_await { false }; }; class BlockStatement final : public ScopeNode { public: explicit BlockStatement(SourceRange source_range) : ScopeNode(source_range) { } Completion execute(Interpreter& interpreter, GlobalObject& object) const override; }; class FunctionBody final : public ScopeNode { public: explicit FunctionBody(SourceRange source_range) : ScopeNode(source_range) { } void set_strict_mode() { m_in_strict_mode = true; } bool in_strict_mode() const { return m_in_strict_mode; } virtual Completion execute(Interpreter&, GlobalObject&) const override; private: bool m_in_strict_mode { false }; }; class Expression : public ASTNode { public: explicit Expression(SourceRange source_range) : ASTNode(source_range) { } virtual ThrowCompletionOr to_reference(Interpreter&, GlobalObject&) const; }; class Declaration : public Statement { public: explicit Declaration(SourceRange source_range) : Statement(source_range) { } virtual ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&& callback) const = 0; // 8.1.3 Static Semantics: IsConstantDeclaration, https://tc39.es/ecma262/#sec-static-semantics-isconstantdeclaration virtual bool is_constant_declaration() const { return false; } virtual bool is_lexical_declaration() const { return false; } }; class ErrorDeclaration final : public Declaration { public: explicit ErrorDeclaration(SourceRange source_range) : Declaration(source_range) { } Completion execute(Interpreter&, GlobalObject&) const override { return {}; } ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&&) const override { VERIFY_NOT_REACHED(); } }; struct BindingPattern : RefCounted { // This covers both BindingProperty and BindingElement, hence the more generic name struct BindingEntry { // If this entry represents a BindingElement, then name will be Empty Variant, NonnullRefPtr, Empty> name {}; Variant, NonnullRefPtr, NonnullRefPtr, Empty> alias {}; RefPtr initializer {}; bool is_rest { false }; bool is_elision() const { return name.has() && alias.has(); } }; enum class Kind { Array, Object, }; void dump(int indent) const; ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&& callback) const; bool contains_expression() const; Vector entries; Kind kind { Kind::Object }; }; class FunctionNode { public: struct Parameter { Variant> binding; RefPtr default_value; bool is_rest { false }; }; FlyString const& name() const { return m_name; } String const& source_text() const { return m_source_text; } Statement const& body() const { return *m_body; } Vector const& parameters() const { return m_parameters; }; i32 function_length() const { return m_function_length; } bool is_strict_mode() const { return m_is_strict_mode; } bool might_need_arguments_object() const { return m_might_need_arguments_object; } bool contains_direct_call_to_eval() const { return m_contains_direct_call_to_eval; } bool is_arrow_function() const { return m_is_arrow_function; } FunctionKind kind() const { return m_kind; } protected: FunctionNode(FlyString name, String source_text, NonnullRefPtr body, Vector parameters, i32 function_length, FunctionKind kind, bool is_strict_mode, bool might_need_arguments_object, bool contains_direct_call_to_eval, bool is_arrow_function) : m_name(move(name)) , m_source_text(move(source_text)) , m_body(move(body)) , m_parameters(move(parameters)) , m_function_length(function_length) , m_kind(kind) , m_is_strict_mode(is_strict_mode) , m_might_need_arguments_object(might_need_arguments_object) , m_contains_direct_call_to_eval(contains_direct_call_to_eval) , m_is_arrow_function(is_arrow_function) { if (m_is_arrow_function) VERIFY(!m_might_need_arguments_object); } void dump(int indent, String const& class_name) const; protected: void set_name(FlyString name) { VERIFY(m_name.is_empty()); m_name = move(name); } private: FlyString m_name; String m_source_text; NonnullRefPtr m_body; Vector const m_parameters; const i32 m_function_length; FunctionKind m_kind; bool m_is_strict_mode { false }; bool m_might_need_arguments_object { false }; bool m_contains_direct_call_to_eval { false }; bool m_is_arrow_function { false }; }; class FunctionDeclaration final : public Declaration , public FunctionNode { public: static bool must_have_name() { return true; } FunctionDeclaration(SourceRange source_range, FlyString const& name, String source_text, NonnullRefPtr body, Vector parameters, i32 function_length, FunctionKind kind, bool is_strict_mode, bool might_need_arguments_object, bool contains_direct_call_to_eval) : Declaration(source_range) , FunctionNode(name, move(source_text), move(body), move(parameters), function_length, kind, is_strict_mode, might_need_arguments_object, contains_direct_call_to_eval, false) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; virtual ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&& callback) const override; virtual bool is_function_declaration() const override { return true; } void set_should_do_additional_annexB_steps() { m_is_hoisted = true; } private: bool m_is_hoisted { false }; }; class FunctionExpression final : public Expression , public FunctionNode { public: static bool must_have_name() { return false; } FunctionExpression(SourceRange source_range, FlyString const& name, String source_text, NonnullRefPtr body, Vector parameters, i32 function_length, FunctionKind kind, bool is_strict_mode, bool might_need_arguments_object, bool contains_direct_call_to_eval, bool is_arrow_function = false) : Expression(source_range) , FunctionNode(name, move(source_text), move(body), move(parameters), function_length, kind, is_strict_mode, might_need_arguments_object, contains_direct_call_to_eval, is_arrow_function) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; bool has_name() const { return !name().is_empty(); } Value instantiate_ordinary_function_expression(Interpreter& interpreter, GlobalObject& global_object, FlyString given_name) const; private: virtual bool is_function_expression() const override { return true; } }; class ErrorExpression final : public Expression { public: explicit ErrorExpression(SourceRange source_range) : Expression(source_range) { } Completion execute(Interpreter&, GlobalObject&) const override { return {}; } }; class YieldExpression final : public Expression { public: explicit YieldExpression(SourceRange source_range, RefPtr argument, bool is_yield_from) : Expression(source_range) , m_argument(move(argument)) , m_is_yield_from(is_yield_from) { } Expression const* argument() const { return m_argument; } bool is_yield_from() const { return m_is_yield_from; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: RefPtr m_argument; bool m_is_yield_from { false }; }; class AwaitExpression final : public Expression { public: explicit AwaitExpression(SourceRange source_range, NonnullRefPtr argument) : Expression(source_range) , m_argument(move(argument)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_argument; }; class ReturnStatement final : public Statement { public: explicit ReturnStatement(SourceRange source_range, RefPtr argument) : Statement(source_range) , m_argument(move(argument)) { } Expression const* argument() const { return m_argument; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: RefPtr m_argument; }; class IfStatement final : public Statement { public: IfStatement(SourceRange source_range, NonnullRefPtr predicate, NonnullRefPtr consequent, RefPtr alternate) : Statement(source_range) , m_predicate(move(predicate)) , m_consequent(move(consequent)) , m_alternate(move(alternate)) { } Expression const& predicate() const { return *m_predicate; } Statement const& consequent() const { return *m_consequent; } Statement const* alternate() const { return m_alternate; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_predicate; NonnullRefPtr m_consequent; RefPtr m_alternate; }; class WhileStatement final : public IterationStatement { public: WhileStatement(SourceRange source_range, NonnullRefPtr test, NonnullRefPtr body) : IterationStatement(source_range) , m_test(move(test)) , m_body(move(body)) { } Expression const& test() const { return *m_test; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_test; NonnullRefPtr m_body; }; class DoWhileStatement final : public IterationStatement { public: DoWhileStatement(SourceRange source_range, NonnullRefPtr test, NonnullRefPtr body) : IterationStatement(source_range) , m_test(move(test)) , m_body(move(body)) { } Expression const& test() const { return *m_test; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_test; NonnullRefPtr m_body; }; class WithStatement final : public Statement { public: WithStatement(SourceRange source_range, NonnullRefPtr object, NonnullRefPtr body) : Statement(source_range) , m_object(move(object)) , m_body(move(body)) { } Expression const& object() const { return *m_object; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: NonnullRefPtr m_object; NonnullRefPtr m_body; }; class ForStatement final : public IterationStatement { public: ForStatement(SourceRange source_range, RefPtr init, RefPtr test, RefPtr update, NonnullRefPtr body) : IterationStatement(source_range) , m_init(move(init)) , m_test(move(test)) , m_update(move(update)) , m_body(move(body)) { } ASTNode const* init() const { return m_init; } Expression const* test() const { return m_test; } Expression const* update() const { return m_update; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: RefPtr m_init; RefPtr m_test; RefPtr m_update; NonnullRefPtr m_body; }; class ForInStatement final : public IterationStatement { public: ForInStatement(SourceRange source_range, Variant, NonnullRefPtr> lhs, NonnullRefPtr rhs, NonnullRefPtr body) : IterationStatement(source_range) , m_lhs(move(lhs)) , m_rhs(move(rhs)) , m_body(move(body)) { } auto const& lhs() const { return m_lhs; } Expression const& rhs() const { return *m_rhs; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; private: Variant, NonnullRefPtr> m_lhs; NonnullRefPtr m_rhs; NonnullRefPtr m_body; }; class ForOfStatement final : public IterationStatement { public: ForOfStatement(SourceRange source_range, Variant, NonnullRefPtr> lhs, NonnullRefPtr rhs, NonnullRefPtr body) : IterationStatement(source_range) , m_lhs(move(lhs)) , m_rhs(move(rhs)) , m_body(move(body)) { } auto const& lhs() const { return m_lhs; } Expression const& rhs() const { return *m_rhs; } Statement const& body() const { return *m_body; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; private: Variant, NonnullRefPtr> m_lhs; NonnullRefPtr m_rhs; NonnullRefPtr m_body; }; class ForAwaitOfStatement final : public IterationStatement { public: ForAwaitOfStatement(SourceRange source_range, Variant, NonnullRefPtr> lhs, NonnullRefPtr rhs, NonnullRefPtr body) : IterationStatement(source_range) , m_lhs(move(lhs)) , m_rhs(move(rhs)) , m_body(move(body)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual Completion loop_evaluation(Interpreter&, GlobalObject&, Vector const&) const override; virtual void dump(int indent) const override; private: Variant, NonnullRefPtr> m_lhs; NonnullRefPtr m_rhs; NonnullRefPtr m_body; }; enum class BinaryOp { Addition, Subtraction, Multiplication, Division, Modulo, Exponentiation, StrictlyEquals, StrictlyInequals, LooselyEquals, LooselyInequals, GreaterThan, GreaterThanEquals, LessThan, LessThanEquals, BitwiseAnd, BitwiseOr, BitwiseXor, LeftShift, RightShift, UnsignedRightShift, In, InstanceOf, }; class BinaryExpression final : public Expression { public: BinaryExpression(SourceRange source_range, BinaryOp op, NonnullRefPtr lhs, NonnullRefPtr rhs) : Expression(source_range) , m_op(op) , m_lhs(move(lhs)) , m_rhs(move(rhs)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: BinaryOp m_op; NonnullRefPtr m_lhs; NonnullRefPtr m_rhs; }; enum class LogicalOp { And, Or, NullishCoalescing, }; class LogicalExpression final : public Expression { public: LogicalExpression(SourceRange source_range, LogicalOp op, NonnullRefPtr lhs, NonnullRefPtr rhs) : Expression(source_range) , m_op(op) , m_lhs(move(lhs)) , m_rhs(move(rhs)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: LogicalOp m_op; NonnullRefPtr m_lhs; NonnullRefPtr m_rhs; }; enum class UnaryOp { BitwiseNot, Not, Plus, Minus, Typeof, Void, Delete, }; class UnaryExpression final : public Expression { public: UnaryExpression(SourceRange source_range, UnaryOp op, NonnullRefPtr lhs) : Expression(source_range) , m_op(op) , m_lhs(move(lhs)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: UnaryOp m_op; NonnullRefPtr m_lhs; }; class SequenceExpression final : public Expression { public: SequenceExpression(SourceRange source_range, NonnullRefPtrVector expressions) : Expression(source_range) , m_expressions(move(expressions)) { VERIFY(m_expressions.size() >= 2); } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtrVector m_expressions; }; class Literal : public Expression { protected: explicit Literal(SourceRange source_range) : Expression(source_range) { } }; class BooleanLiteral final : public Literal { public: explicit BooleanLiteral(SourceRange source_range, bool value) : Literal(source_range) , m_value(value) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: bool m_value { false }; }; class NumericLiteral final : public Literal { public: explicit NumericLiteral(SourceRange source_range, double value) : Literal(source_range) , m_value(value) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: Value m_value; }; class BigIntLiteral final : public Literal { public: explicit BigIntLiteral(SourceRange source_range, String value) : Literal(source_range) , m_value(move(value)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: String m_value; }; class StringLiteral final : public Literal { public: explicit StringLiteral(SourceRange source_range, String value, bool is_use_strict_directive = false) : Literal(source_range) , m_value(move(value)) , m_is_use_strict_directive(is_use_strict_directive) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; StringView value() const { return m_value; } bool is_use_strict_directive() const { return m_is_use_strict_directive; }; private: String m_value; bool m_is_use_strict_directive; }; class NullLiteral final : public Literal { public: explicit NullLiteral(SourceRange source_range) : Literal(source_range) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; }; class RegExpLiteral final : public Literal { public: RegExpLiteral(SourceRange source_range, regex::Parser::Result parsed_regex, String parsed_pattern, regex::RegexOptions parsed_flags, String pattern, String flags) : Literal(source_range) , m_parsed_regex(move(parsed_regex)) , m_parsed_pattern(move(parsed_pattern)) , m_parsed_flags(move(parsed_flags)) , m_pattern(move(pattern)) , m_flags(move(flags)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; regex::Parser::Result const& parsed_regex() const { return m_parsed_regex; } String const& parsed_pattern() const { return m_parsed_pattern; } regex::RegexOptions const& parsed_flags() const { return m_parsed_flags; } String const& pattern() const { return m_pattern; } String const& flags() const { return m_flags; } private: regex::Parser::Result m_parsed_regex; String m_parsed_pattern; regex::RegexOptions m_parsed_flags; String m_pattern; String m_flags; }; class Identifier final : public Expression { public: explicit Identifier(SourceRange source_range, FlyString string) : Expression(source_range) , m_string(move(string)) { } FlyString const& string() const { return m_string; } void set_lexically_bound_function_argument_index(size_t index) { m_lexically_bound_function_argument = index; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual ThrowCompletionOr to_reference(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: virtual bool is_identifier() const override { return true; } FlyString m_string; Optional m_lexically_bound_function_argument; mutable Optional m_cached_environment_coordinate; }; class PrivateIdentifier final : public Expression { public: explicit PrivateIdentifier(SourceRange source_range, FlyString string) : Expression(source_range) , m_string(move(string)) { } FlyString const& string() const { return m_string; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: FlyString m_string; }; class ClassElement : public ASTNode { public: ClassElement(SourceRange source_range, bool is_static) : ASTNode(source_range) , m_is_static(is_static) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; enum class ElementKind { Method, Field, StaticInitializer, }; virtual ElementKind class_element_kind() const = 0; bool is_static() const { return m_is_static; } using ClassElementName = Variant; struct ClassFieldDefinition { ClassElementName name; Handle initializer; }; // We use the Completion also as a ClassStaticBlockDefinition Record. using ClassValue = Variant; virtual ThrowCompletionOr class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const = 0; virtual Optional private_bound_identifier() const { return {}; }; private: bool m_is_static { false }; }; class ClassMethod final : public ClassElement { public: enum class Kind { Method, Getter, Setter, }; ClassMethod(SourceRange source_range, NonnullRefPtr key, NonnullRefPtr function, Kind kind, bool is_static) : ClassElement(source_range, is_static) , m_key(move(key)) , m_function(move(function)) , m_kind(kind) { } Expression const& key() const { return *m_key; } Kind kind() const { return m_kind; } virtual ElementKind class_element_kind() const override { return ElementKind::Method; } virtual void dump(int indent) const override; virtual ThrowCompletionOr class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const override; virtual Optional private_bound_identifier() const override; private: NonnullRefPtr m_key; NonnullRefPtr m_function; Kind m_kind; }; class ClassField final : public ClassElement { public: ClassField(SourceRange source_range, NonnullRefPtr key, RefPtr init, bool contains_direct_call_to_eval, bool is_static) : ClassElement(source_range, is_static) , m_key(move(key)) , m_initializer(move(init)) , m_contains_direct_call_to_eval(contains_direct_call_to_eval) { } Expression const& key() const { return *m_key; } RefPtr const& initializer() const { return m_initializer; } RefPtr& initializer() { return m_initializer; } virtual ElementKind class_element_kind() const override { return ElementKind::Field; } virtual void dump(int indent) const override; virtual ThrowCompletionOr class_element_evaluation(Interpreter& interpreter, GlobalObject& object, Object& home_object) const override; virtual Optional private_bound_identifier() const override; private: NonnullRefPtr m_key; RefPtr m_initializer; bool m_contains_direct_call_to_eval { false }; }; class StaticInitializer final : public ClassElement { public: StaticInitializer(SourceRange source_range, NonnullRefPtr function_body, bool contains_direct_call_to_eval) : ClassElement(source_range, true) , m_function_body(move(function_body)) , m_contains_direct_call_to_eval(contains_direct_call_to_eval) { } virtual ElementKind class_element_kind() const override { return ElementKind::StaticInitializer; } virtual ThrowCompletionOr class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const override; virtual void dump(int indent) const override; private: NonnullRefPtr m_function_body; bool m_contains_direct_call_to_eval { false }; }; class SuperExpression final : public Expression { public: explicit SuperExpression(SourceRange source_range) : Expression(source_range) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual bool is_super_expression() const override { return true; } }; class ClassExpression final : public Expression { public: ClassExpression(SourceRange source_range, String name, String source_text, RefPtr constructor, RefPtr super_class, NonnullRefPtrVector elements) : Expression(source_range) , m_name(move(name)) , m_source_text(move(source_text)) , m_constructor(move(constructor)) , m_super_class(move(super_class)) , m_elements(move(elements)) { } StringView name() const { return m_name; } String const& source_text() const { return m_source_text; } RefPtr constructor() const { return m_constructor; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; bool has_name() const { return !m_name.is_empty(); } ThrowCompletionOr class_definition_evaluation(Interpreter& interpreter, GlobalObject& global_object, FlyString const& binding_name = {}, FlyString const& class_name = {}) const; private: virtual bool is_class_expression() const override { return true; } String m_name; String m_source_text; RefPtr m_constructor; RefPtr m_super_class; NonnullRefPtrVector m_elements; }; class ClassDeclaration final : public Declaration { public: ClassDeclaration(SourceRange source_range, NonnullRefPtr class_expression) : Declaration(source_range) , m_class_expression(move(class_expression)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; virtual ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&& callback) const override; virtual bool is_lexical_declaration() const override { return true; } StringView name() const { return m_class_expression->name(); } private: friend ExportStatement; NonnullRefPtr m_class_expression; }; class SpreadExpression final : public Expression { public: explicit SpreadExpression(SourceRange source_range, NonnullRefPtr target) : Expression(source_range) , m_target(move(target)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: NonnullRefPtr m_target; }; class ThisExpression final : public Expression { public: explicit ThisExpression(SourceRange source_range) : Expression(source_range) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; }; class CallExpression : public Expression { public: struct Argument { NonnullRefPtr value; bool is_spread; }; CallExpression(SourceRange source_range, NonnullRefPtr callee, Vector arguments = {}) : Expression(source_range) , m_callee(move(callee)) , m_arguments(move(arguments)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; Expression const& callee() const { return m_callee; } protected: Completion throw_type_error_for_callee(Interpreter&, GlobalObject&, Value callee_value, StringView call_type) const; NonnullRefPtr m_callee; Vector const m_arguments; private: struct ThisAndCallee { Value this_value; Value callee; }; ThrowCompletionOr compute_this_and_callee(Interpreter&, GlobalObject&, Reference const&) const; }; class NewExpression final : public CallExpression { public: NewExpression(SourceRange source_range, NonnullRefPtr callee, Vector arguments = {}) : CallExpression(source_range, move(callee), move(arguments)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual bool is_new_expression() const override { return true; } }; class SuperCall final : public Expression { public: SuperCall(SourceRange source_range, Vector arguments) : Expression(source_range) , m_arguments(move(arguments)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: Vector const m_arguments; }; enum class AssignmentOp { Assignment, AdditionAssignment, SubtractionAssignment, MultiplicationAssignment, DivisionAssignment, ModuloAssignment, ExponentiationAssignment, BitwiseAndAssignment, BitwiseOrAssignment, BitwiseXorAssignment, LeftShiftAssignment, RightShiftAssignment, UnsignedRightShiftAssignment, AndAssignment, OrAssignment, NullishAssignment, }; class AssignmentExpression final : public Expression { public: AssignmentExpression(SourceRange source_range, AssignmentOp op, NonnullRefPtr lhs, NonnullRefPtr rhs) : Expression(source_range) , m_op(op) , m_lhs(move(lhs)) , m_rhs(move(rhs)) { } AssignmentExpression(SourceRange source_range, AssignmentOp op, NonnullRefPtr lhs, NonnullRefPtr rhs) : Expression(source_range) , m_op(op) , m_lhs(move(lhs)) , m_rhs(move(rhs)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: AssignmentOp m_op; Variant, NonnullRefPtr> m_lhs; NonnullRefPtr m_rhs; }; enum class UpdateOp { Increment, Decrement, }; class UpdateExpression final : public Expression { public: UpdateExpression(SourceRange source_range, UpdateOp op, NonnullRefPtr argument, bool prefixed = false) : Expression(source_range) , m_op(op) , m_argument(move(argument)) , m_prefixed(prefixed) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: UpdateOp m_op; NonnullRefPtr m_argument; bool m_prefixed; }; enum class DeclarationKind { Var, Let, Const, }; class VariableDeclarator final : public ASTNode { public: VariableDeclarator(SourceRange source_range, NonnullRefPtr id) : ASTNode(source_range) , m_target(move(id)) { } VariableDeclarator(SourceRange source_range, NonnullRefPtr target, RefPtr init) : ASTNode(source_range) , m_target(move(target)) , m_init(move(init)) { } VariableDeclarator(SourceRange source_range, Variant, NonnullRefPtr> target, RefPtr init) : ASTNode(source_range) , m_target(move(target)) , m_init(move(init)) { } auto& target() const { return m_target; } Expression const* init() const { return m_init; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: Variant, NonnullRefPtr> m_target; RefPtr m_init; }; class VariableDeclaration final : public Declaration { public: VariableDeclaration(SourceRange source_range, DeclarationKind declaration_kind, NonnullRefPtrVector declarations) : Declaration(source_range) , m_declaration_kind(declaration_kind) , m_declarations(move(declarations)) { } DeclarationKind declaration_kind() const { return m_declaration_kind; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; NonnullRefPtrVector const& declarations() const { return m_declarations; } virtual ThrowCompletionOr for_each_bound_name(ThrowCompletionOrVoidCallback&& callback) const override; virtual bool is_constant_declaration() const override { return m_declaration_kind == DeclarationKind::Const; }; virtual bool is_lexical_declaration() const override { return m_declaration_kind != DeclarationKind::Var; } private: DeclarationKind m_declaration_kind; NonnullRefPtrVector m_declarations; }; class ObjectProperty final : public ASTNode { public: enum class Type { KeyValue, Getter, Setter, Spread, }; ObjectProperty(SourceRange source_range, NonnullRefPtr key, RefPtr value, Type property_type, bool is_method) : ASTNode(source_range) , m_key(move(key)) , m_value(move(value)) , m_property_type(property_type) , m_is_method(is_method) { } Expression const& key() const { return m_key; } Expression const& value() const { VERIFY(m_value); return *m_value; } Type type() const { return m_property_type; } bool is_method() const { return m_is_method; } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; private: NonnullRefPtr m_key; RefPtr m_value; Type m_property_type; bool m_is_method { false }; }; class ObjectExpression final : public Expression { public: explicit ObjectExpression(SourceRange source_range, NonnullRefPtrVector properties = {}, Optional first_invalid_property_range = {}) : Expression(source_range) , m_properties(move(properties)) , m_first_invalid_property_range(move(first_invalid_property_range)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; Optional const& invalid_property_range() const { return m_first_invalid_property_range; } private: NonnullRefPtrVector m_properties; Optional m_first_invalid_property_range; }; class ArrayExpression final : public Expression { public: ArrayExpression(SourceRange source_range, Vector> elements) : Expression(source_range) , m_elements(move(elements)) { } Vector> const& elements() const { return m_elements; } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: Vector> m_elements; }; class TemplateLiteral final : public Expression { public: TemplateLiteral(SourceRange source_range, NonnullRefPtrVector expressions) : Expression(source_range) , m_expressions(move(expressions)) { } TemplateLiteral(SourceRange source_range, NonnullRefPtrVector expressions, NonnullRefPtrVector raw_strings) : Expression(source_range) , m_expressions(move(expressions)) , m_raw_strings(move(raw_strings)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; NonnullRefPtrVector const& expressions() const { return m_expressions; } NonnullRefPtrVector const& raw_strings() const { return m_raw_strings; } private: NonnullRefPtrVector const m_expressions; NonnullRefPtrVector const m_raw_strings; }; class TaggedTemplateLiteral final : public Expression { public: TaggedTemplateLiteral(SourceRange source_range, NonnullRefPtr tag, NonnullRefPtr template_literal) : Expression(source_range) , m_tag(move(tag)) , m_template_literal(move(template_literal)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr const m_tag; NonnullRefPtr const m_template_literal; }; class MemberExpression final : public Expression { public: MemberExpression(SourceRange source_range, NonnullRefPtr object, NonnullRefPtr property, bool computed = false) : Expression(source_range) , m_object(move(object)) , m_property(move(property)) , m_computed(computed) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; virtual ThrowCompletionOr to_reference(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; bool is_computed() const { return m_computed; } Expression const& object() const { return *m_object; } Expression const& property() const { return *m_property; } String to_string_approximation() const; bool ends_in_private_name() const; private: virtual bool is_member_expression() const override { return true; } NonnullRefPtr m_object; NonnullRefPtr m_property; bool m_computed { false }; }; class OptionalChain final : public Expression { public: enum class Mode { Optional, NotOptional, }; struct Call { Vector arguments; Mode mode; }; struct ComputedReference { NonnullRefPtr expression; Mode mode; }; struct MemberReference { NonnullRefPtr identifier; Mode mode; }; struct PrivateMemberReference { NonnullRefPtr private_identifier; Mode mode; }; using Reference = Variant; OptionalChain(SourceRange source_range, NonnullRefPtr base, Vector references) : Expression(source_range) , m_base(move(base)) , m_references(move(references)) { } virtual Completion execute(Interpreter& interpreter, GlobalObject& global_object) const override; virtual ThrowCompletionOr to_reference(Interpreter& interpreter, GlobalObject& global_object) const override; virtual void dump(int indent) const override; private: struct ReferenceAndValue { JS::Reference reference; Value value; }; ThrowCompletionOr to_reference_and_value(Interpreter&, GlobalObject&) const; NonnullRefPtr m_base; Vector m_references; }; class MetaProperty final : public Expression { public: enum class Type { NewTarget, ImportMeta, }; MetaProperty(SourceRange source_range, Type type) : Expression(source_range) , m_type(type) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void dump(int indent) const override; private: Type m_type; }; class ImportCall final : public Expression { public: ImportCall(SourceRange source_range, NonnullRefPtr specifier, RefPtr options) : Expression(source_range) , m_specifier(move(specifier)) , m_options(move(options)) { } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; private: NonnullRefPtr m_specifier; RefPtr m_options; }; class ConditionalExpression final : public Expression { public: ConditionalExpression(SourceRange source_range, NonnullRefPtr test, NonnullRefPtr consequent, NonnullRefPtr alternate) : Expression(source_range) , m_test(move(test)) , m_consequent(move(consequent)) , m_alternate(move(alternate)) { } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_test; NonnullRefPtr m_consequent; NonnullRefPtr m_alternate; }; class CatchClause final : public ASTNode { public: CatchClause(SourceRange source_range, FlyString parameter, NonnullRefPtr body) : ASTNode(source_range) , m_parameter(move(parameter)) , m_body(move(body)) { } CatchClause(SourceRange source_range, NonnullRefPtr parameter, NonnullRefPtr body) : ASTNode(source_range) , m_parameter(move(parameter)) , m_body(move(body)) { } auto& parameter() const { return m_parameter; } BlockStatement const& body() const { return m_body; } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; private: Variant> m_parameter; NonnullRefPtr m_body; }; class TryStatement final : public Statement { public: TryStatement(SourceRange source_range, NonnullRefPtr block, RefPtr handler, RefPtr finalizer) : Statement(source_range) , m_block(move(block)) , m_handler(move(handler)) , m_finalizer(move(finalizer)) { } BlockStatement const& block() const { return m_block; } CatchClause const* handler() const { return m_handler; } BlockStatement const* finalizer() const { return m_finalizer; } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_block; RefPtr m_handler; RefPtr m_finalizer; }; class ThrowStatement final : public Statement { public: explicit ThrowStatement(SourceRange source_range, NonnullRefPtr argument) : Statement(source_range) , m_argument(move(argument)) { } Expression const& argument() const { return m_argument; } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; private: NonnullRefPtr m_argument; }; class SwitchCase final : public ScopeNode { public: SwitchCase(SourceRange source_range, RefPtr test) : ScopeNode(source_range) , m_test(move(test)) { } Expression const* test() const { return m_test; } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; private: RefPtr m_test; }; class SwitchStatement final : public ScopeNode { public: SwitchStatement(SourceRange source_range, NonnullRefPtr discriminant) : ScopeNode(source_range) , m_discriminant(move(discriminant)) { } virtual void dump(int indent) const override; virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; Completion execute_impl(Interpreter&, GlobalObject&) const; void add_case(NonnullRefPtr switch_case) { m_cases.append(move(switch_case)); } private: NonnullRefPtr m_discriminant; NonnullRefPtrVector m_cases; }; class BreakStatement final : public Statement { public: BreakStatement(SourceRange source_range, FlyString target_label) : Statement(source_range) , m_target_label(move(target_label)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; FlyString const& target_label() const { return m_target_label; } virtual void generate_bytecode(Bytecode::Generator&) const override; private: FlyString m_target_label; }; class ContinueStatement final : public Statement { public: ContinueStatement(SourceRange source_range, FlyString target_label) : Statement(source_range) , m_target_label(move(target_label)) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; FlyString const& target_label() const { return m_target_label; } private: FlyString m_target_label; }; class DebuggerStatement final : public Statement { public: explicit DebuggerStatement(SourceRange source_range) : Statement(source_range) { } virtual Completion execute(Interpreter&, GlobalObject&) const override; virtual void generate_bytecode(Bytecode::Generator&) const override; }; class SyntheticReferenceExpression final : public Expression { public: explicit SyntheticReferenceExpression(SourceRange source_range, Reference reference, Value value) : Expression(source_range) , m_reference(move(reference)) , m_value(value) { } virtual Completion execute(Interpreter&, GlobalObject&) const override { return m_value; } virtual ThrowCompletionOr to_reference(Interpreter&, GlobalObject&) const override { return m_reference; } private: Reference m_reference; Value m_value; }; template<> inline bool ASTNode::fast_is() const { return is_new_expression(); } template<> inline bool ASTNode::fast_is() const { return is_member_expression(); } template<> inline bool ASTNode::fast_is() const { return is_super_expression(); } template<> inline bool ASTNode::fast_is() const { return is_function_expression(); } template<> inline bool ASTNode::fast_is() const { return is_class_expression(); } template<> inline bool ASTNode::fast_is() const { return is_identifier(); } template<> inline bool ASTNode::fast_is() const { return is_expression_statement(); } template<> inline bool ASTNode::fast_is() const { return is_scope_node(); } template<> inline bool ASTNode::fast_is() const { return is_program(); } template<> inline bool ASTNode::fast_is() const { return is_function_declaration(); } }