123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890 |
- /*
- * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
- * Copyright (c) 2021, David Tuin <davidot@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/FlyString.h>
- #include <AK/HashMap.h>
- #include <AK/NonnullRefPtrVector.h>
- #include <AK/OwnPtr.h>
- #include <AK/RefPtr.h>
- #include <AK/String.h>
- #include <AK/Variant.h>
- #include <AK/Vector.h>
- #include <LibJS/Forward.h>
- #include <LibJS/Runtime/EnvironmentCoordinate.h>
- #include <LibJS/Runtime/FunctionKind.h>
- #include <LibJS/Runtime/PropertyKey.h>
- #include <LibJS/Runtime/Reference.h>
- #include <LibJS/Runtime/Value.h>
- #include <LibJS/SourceRange.h>
- #include <LibRegex/Regex.h>
- namespace JS {
- class Declaration;
- class ClassDeclaration;
- class FunctionDeclaration;
- class Identifier;
- class MemberExpression;
- class VariableDeclaration;
- template<class T, class... Args>
- static inline NonnullRefPtr<T>
- create_ast_node(SourceRange range, Args&&... args)
- {
- return adopt_ref(*new T(range, forward<Args>(args)...));
- }
- class ASTNode : public RefCounted<ASTNode> {
- public:
- virtual ~ASTNode() { }
- virtual Value 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<typename T>
- 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)
- {
- }
- };
- class LabelableStatement : public Statement {
- public:
- using Statement::Statement;
- Vector<FlyString> const& labels() const { return m_labels; }
- virtual void add_label(FlyString string) { m_labels.append(move(string)); }
- protected:
- Vector<FlyString> m_labels;
- };
- class IterationStatement : public LabelableStatement {
- public:
- using LabelableStatement::LabelableStatement;
- };
- class EmptyStatement final : public Statement {
- public:
- explicit EmptyStatement(SourceRange source_range)
- : Statement(source_range)
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- };
- class ErrorStatement final : public Statement {
- public:
- explicit ErrorStatement(SourceRange source_range)
- : Statement(source_range)
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- };
- class ExpressionStatement final : public Statement {
- public:
- ExpressionStatement(SourceRange source_range, NonnullRefPtr<Expression> expression)
- : Statement(source_range)
- , m_expression(move(expression))
- {
- }
- virtual Value 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<Expression> m_expression;
- };
- template<typename... Args>
- class IteratorOrVoidFunction : public Function<IterationDecision(Args...)> {
- public:
- template<typename CallableType>
- IteratorOrVoidFunction(CallableType&& callable) requires(VoidFunction<CallableType, Args...>)
- : Function<IterationDecision(Args...)>([callable = forward<CallableType>(callable)](Args... args) {
- callable(args...);
- return IterationDecision::Continue;
- })
- {
- }
- template<typename CallableType>
- IteratorOrVoidFunction(CallableType&& callable) requires(IteratorFunction<CallableType, Args...>)
- : Function<IterationDecision(Args...)>(forward<CallableType>(callable))
- {
- }
- };
- class ScopeNode : public LabelableStatement {
- public:
- template<typename T, typename... Args>
- T& append(SourceRange range, Args&&... args)
- {
- auto child = create_ast_node<T>(range, forward<Args>(args)...);
- m_children.append(move(child));
- return static_cast<T&>(m_children.last());
- }
- void append(NonnullRefPtr<Statement> child)
- {
- m_children.append(move(child));
- }
- NonnullRefPtrVector<Statement> const& children() const { return m_children; }
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- Value evaluate_statements(Interpreter& interpreter, GlobalObject& global_object) const;
- void add_var_scoped_declaration(NonnullRefPtr<Declaration> variables);
- void add_lexical_declaration(NonnullRefPtr<Declaration> variables);
- void add_hoisted_function(NonnullRefPtr<FunctionDeclaration> 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(); }
- void for_each_lexically_scoped_declaration(IteratorOrVoidFunction<Declaration const&>&& callback) const;
- void for_each_lexically_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const;
- void for_each_var_declared_name(IteratorOrVoidFunction<FlyString const&>&& callback) const;
- void for_each_var_function_declaration_in_reverse_order(IteratorOrVoidFunction<FunctionDeclaration const&>&& callback) const;
- void for_each_var_scoped_variable_declaration(IteratorOrVoidFunction<VariableDeclaration const&>&& callback) const;
- void block_declaration_instantiation(GlobalObject& global_object, Environment* environment) const;
- void for_each_function_hoistable_with_annexB_extension(IteratorOrVoidFunction<FunctionDeclaration&>&& callback) const;
- protected:
- explicit ScopeNode(SourceRange source_range)
- : LabelableStatement(source_range)
- {
- }
- private:
- virtual bool is_scope_node() const final { return true; }
- NonnullRefPtrVector<Statement> m_children;
- NonnullRefPtrVector<Declaration> m_lexical_declarations;
- NonnullRefPtrVector<Declaration> m_var_declarations;
- NonnullRefPtrVector<FunctionDeclaration> m_functions_hoistable_with_annexB_extension;
- };
- class ImportStatement final : public Statement {
- public:
- struct ImportEntry {
- String import_name;
- String local_name;
- };
- explicit ImportStatement(SourceRange source_range, StringView from_module, Vector<ImportEntry> entries = {})
- : Statement(source_range)
- , m_module_request(from_module)
- , m_entries(move(entries))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- bool has_bound_name(StringView name) const;
- private:
- String m_module_request;
- Vector<ImportEntry> m_entries;
- };
- class ExportStatement final : public Statement {
- public:
- struct ExportEntry {
- enum Kind {
- ModuleRequest,
- LocalExport
- } kind;
- // Can always have
- String export_name;
- // Only if module request
- String module_request;
- // Has just one of ones below
- String local_or_import_name;
- ExportEntry(String export_name, String local_name)
- : kind(LocalExport)
- , export_name(export_name)
- , local_or_import_name(local_name)
- {
- }
- };
- explicit ExportStatement(SourceRange source_range, RefPtr<ASTNode> statement, Vector<ExportEntry> entries)
- : Statement(source_range)
- , m_statement(move(statement))
- , m_entries(move(entries))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- bool has_export(StringView export_name) const;
- private:
- RefPtr<ASTNode> m_statement;
- Vector<ExportEntry> m_entries;
- };
- 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 Value 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<ImportStatement> import_statement)
- {
- m_imports.append(import_statement);
- append(import_statement);
- }
- void append_export(NonnullRefPtr<ExportStatement> export_statement)
- {
- m_exports.append(export_statement);
- append(export_statement);
- }
- NonnullRefPtrVector<ImportStatement> const& imports() const { return m_imports; }
- NonnullRefPtrVector<ExportStatement> const& exports() const { return m_exports; }
- ThrowCompletionOr<void> 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<ImportStatement> m_imports;
- NonnullRefPtrVector<ExportStatement> m_exports;
- };
- class BlockStatement final : public ScopeNode {
- public:
- explicit BlockStatement(SourceRange source_range)
- : ScopeNode(source_range)
- {
- }
- Value 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 Value 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 Reference to_reference(Interpreter&, GlobalObject&) const;
- };
- class Declaration : public Statement {
- public:
- explicit Declaration(SourceRange source_range)
- : Statement(source_range)
- {
- }
- virtual void for_each_bound_name(IteratorOrVoidFunction<FlyString const&> 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)
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- void for_each_bound_name(IteratorOrVoidFunction<FlyString const&>) const override
- {
- VERIFY_NOT_REACHED();
- }
- };
- struct BindingPattern : RefCounted<BindingPattern> {
- // 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<Identifier>, NonnullRefPtr<Expression>, Empty> name {};
- Variant<NonnullRefPtr<Identifier>, NonnullRefPtr<BindingPattern>, NonnullRefPtr<MemberExpression>, Empty> alias {};
- RefPtr<Expression> initializer {};
- bool is_rest { false };
- bool is_elision() const { return name.has<Empty>() && alias.has<Empty>(); }
- };
- enum class Kind {
- Array,
- Object,
- };
- void dump(int indent) const;
- template<typename C>
- void for_each_bound_name(C&& callback) const;
- bool contains_expression() const;
- Vector<BindingEntry> entries;
- Kind kind { Kind::Object };
- };
- class FunctionNode {
- public:
- struct Parameter {
- Variant<FlyString, NonnullRefPtr<BindingPattern>> binding;
- RefPtr<Expression> default_value;
- bool is_rest { false };
- };
- FlyString const& name() const { return m_name; }
- Statement const& body() const { return *m_body; }
- Vector<Parameter> 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, NonnullRefPtr<Statement> body, Vector<Parameter> 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_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;
- NonnullRefPtr<Statement> m_body;
- Vector<Parameter> 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, NonnullRefPtr<Statement> body, Vector<Parameter> 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(body), move(parameters), function_length, kind, is_strict_mode, might_need_arguments_object, contains_direct_call_to_eval, false)
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- void for_each_bound_name(IteratorOrVoidFunction<FlyString const&> 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, NonnullRefPtr<Statement> body, Vector<Parameter> 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(body), move(parameters), function_length, kind, is_strict_mode, might_need_arguments_object, contains_direct_call_to_eval, is_arrow_function)
- {
- }
- virtual Value 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)
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- };
- class YieldExpression final : public Expression {
- public:
- explicit YieldExpression(SourceRange source_range, RefPtr<Expression> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- RefPtr<Expression> m_argument;
- bool m_is_yield_from { false };
- };
- class AwaitExpression final : public Expression {
- public:
- explicit AwaitExpression(SourceRange source_range, NonnullRefPtr<Expression> argument)
- : Expression(source_range)
- , m_argument(move(argument))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_argument;
- };
- class ReturnStatement final : public Statement {
- public:
- explicit ReturnStatement(SourceRange source_range, RefPtr<Expression> argument)
- : Statement(source_range)
- , m_argument(move(argument))
- {
- }
- Expression const* argument() const { return m_argument; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- RefPtr<Expression> m_argument;
- };
- class IfStatement final : public Statement {
- public:
- IfStatement(SourceRange source_range, NonnullRefPtr<Expression> predicate, NonnullRefPtr<Statement> consequent, RefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_predicate;
- NonnullRefPtr<Statement> m_consequent;
- RefPtr<Statement> m_alternate;
- };
- class WhileStatement final : public IterationStatement {
- public:
- WhileStatement(SourceRange source_range, NonnullRefPtr<Expression> test, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_test;
- NonnullRefPtr<Statement> m_body;
- };
- class DoWhileStatement final : public IterationStatement {
- public:
- DoWhileStatement(SourceRange source_range, NonnullRefPtr<Expression> test, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_test;
- NonnullRefPtr<Statement> m_body;
- };
- class WithStatement final : public Statement {
- public:
- WithStatement(SourceRange source_range, NonnullRefPtr<Expression> object, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- NonnullRefPtr<Expression> m_object;
- NonnullRefPtr<Statement> m_body;
- };
- class ForStatement final : public IterationStatement {
- public:
- ForStatement(SourceRange source_range, RefPtr<ASTNode> init, RefPtr<Expression> test, RefPtr<Expression> update, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- RefPtr<ASTNode> m_init;
- RefPtr<Expression> m_test;
- RefPtr<Expression> m_update;
- NonnullRefPtr<Statement> m_body;
- };
- class ForInStatement final : public IterationStatement {
- public:
- ForInStatement(SourceRange source_range, Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs, NonnullRefPtr<Expression> rhs, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- NonnullRefPtr<Statement> m_body;
- };
- class ForOfStatement final : public IterationStatement {
- public:
- ForOfStatement(SourceRange source_range, Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> lhs, NonnullRefPtr<Expression> rhs, NonnullRefPtr<Statement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- Variant<NonnullRefPtr<ASTNode>, NonnullRefPtr<BindingPattern>> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- NonnullRefPtr<Statement> 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<Expression> lhs, NonnullRefPtr<Expression> rhs)
- : Expression(source_range)
- , m_op(op)
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- {
- }
- virtual Value 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<Expression> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- };
- enum class LogicalOp {
- And,
- Or,
- NullishCoalescing,
- };
- class LogicalExpression final : public Expression {
- public:
- LogicalExpression(SourceRange source_range, LogicalOp op, NonnullRefPtr<Expression> lhs, NonnullRefPtr<Expression> rhs)
- : Expression(source_range)
- , m_op(op)
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- {
- }
- virtual Value 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<Expression> m_lhs;
- NonnullRefPtr<Expression> 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<Expression> lhs)
- : Expression(source_range)
- , m_op(op)
- , m_lhs(move(lhs))
- {
- }
- virtual Value 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<Expression> m_lhs;
- };
- class SequenceExpression final : public Expression {
- public:
- SequenceExpression(SourceRange source_range, NonnullRefPtrVector<Expression> expressions)
- : Expression(source_range)
- , m_expressions(move(expressions))
- {
- VERIFY(m_expressions.size() >= 2);
- }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtrVector<Expression> 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 Value 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 Value 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 Value 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 Value 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 Value 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<ECMAScriptFlags> 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 Value 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<ECMAScriptFlags> 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<ECMAScriptFlags> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual Reference 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<size_t> m_lexically_bound_function_argument;
- mutable Optional<EnvironmentCoordinate> 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 Value 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 Value 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<PropertyKey, PrivateName>;
- struct ClassFieldDefinition {
- ClassElementName name;
- ECMAScriptFunctionObject* initializer { nullptr };
- };
- // We use the Completion also as a ClassStaticBlockDefinition Record.
- using ClassValue = Variant<ClassFieldDefinition, Completion, PrivateElement>;
- virtual ThrowCompletionOr<ClassValue> class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const = 0;
- virtual Optional<FlyString> 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<Expression> key, NonnullRefPtr<FunctionExpression> 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<ClassValue> class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const override;
- virtual Optional<FlyString> private_bound_identifier() const override;
- private:
- NonnullRefPtr<Expression> m_key;
- NonnullRefPtr<FunctionExpression> m_function;
- Kind m_kind;
- };
- class ClassField final : public ClassElement {
- public:
- ClassField(SourceRange source_range, NonnullRefPtr<Expression> key, RefPtr<Expression> 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<Expression> const& initializer() const { return m_initializer; }
- RefPtr<Expression>& initializer() { return m_initializer; }
- virtual ElementKind class_element_kind() const override { return ElementKind::Field; }
- virtual void dump(int indent) const override;
- virtual ThrowCompletionOr<ClassValue> class_element_evaluation(Interpreter& interpreter, GlobalObject& object, Object& home_object) const override;
- virtual Optional<FlyString> private_bound_identifier() const override;
- private:
- NonnullRefPtr<Expression> m_key;
- RefPtr<Expression> m_initializer;
- bool m_contains_direct_call_to_eval { false };
- };
- class StaticInitializer final : public ClassElement {
- public:
- StaticInitializer(SourceRange source_range, NonnullRefPtr<FunctionBody> 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<ClassValue> class_element_evaluation(Interpreter&, GlobalObject&, Object& home_object) const override;
- virtual void dump(int indent) const override;
- private:
- NonnullRefPtr<FunctionBody> 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 Value 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, RefPtr<FunctionExpression> constructor, RefPtr<Expression> super_class, NonnullRefPtrVector<ClassElement> elements)
- : Expression(source_range)
- , m_name(move(name))
- , m_constructor(move(constructor))
- , m_super_class(move(super_class))
- , m_elements(move(elements))
- {
- }
- StringView name() const { return m_name; }
- RefPtr<FunctionExpression> constructor() const { return m_constructor; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- bool has_name() const { return !m_name.is_empty(); }
- ThrowCompletionOr<Value> 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;
- RefPtr<FunctionExpression> m_constructor;
- RefPtr<Expression> m_super_class;
- NonnullRefPtrVector<ClassElement> m_elements;
- };
- class ClassDeclaration final : public Declaration {
- public:
- ClassDeclaration(SourceRange source_range, NonnullRefPtr<ClassExpression> class_expression)
- : Declaration(source_range)
- , m_class_expression(move(class_expression))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- void for_each_bound_name(IteratorOrVoidFunction<FlyString const&> callback) const override;
- virtual bool is_lexical_declaration() const override { return true; }
- private:
- NonnullRefPtr<ClassExpression> m_class_expression;
- };
- class SpreadExpression final : public Expression {
- public:
- explicit SpreadExpression(SourceRange source_range, NonnullRefPtr<Expression> target)
- : Expression(source_range)
- , m_target(move(target))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- NonnullRefPtr<Expression> m_target;
- };
- class ThisExpression final : public Expression {
- public:
- explicit ThisExpression(SourceRange source_range)
- : Expression(source_range)
- {
- }
- virtual Value 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<Expression> value;
- bool is_spread;
- };
- CallExpression(SourceRange source_range, NonnullRefPtr<Expression> callee, Vector<Argument> arguments = {})
- : Expression(source_range)
- , m_callee(move(callee))
- , m_arguments(move(arguments))
- {
- }
- virtual Value 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:
- void throw_type_error_for_callee(Interpreter&, GlobalObject&, Value callee_value, StringView call_type) const;
- NonnullRefPtr<Expression> m_callee;
- Vector<Argument> const m_arguments;
- private:
- struct ThisAndCallee {
- Value this_value;
- Value callee;
- };
- ThisAndCallee compute_this_and_callee(Interpreter&, GlobalObject&, Reference const&) const;
- };
- class NewExpression final : public CallExpression {
- public:
- NewExpression(SourceRange source_range, NonnullRefPtr<Expression> callee, Vector<Argument> arguments = {})
- : CallExpression(source_range, move(callee), move(arguments))
- {
- }
- virtual Value 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<CallExpression::Argument> arguments)
- : Expression(source_range)
- , m_arguments(move(arguments))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- Vector<CallExpression::Argument> 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<Expression> lhs, NonnullRefPtr<Expression> rhs)
- : Expression(source_range)
- , m_op(op)
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- {
- }
- AssignmentExpression(SourceRange source_range, AssignmentOp op, NonnullRefPtr<BindingPattern> lhs, NonnullRefPtr<Expression> rhs)
- : Expression(source_range)
- , m_op(op)
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- {
- }
- virtual Value 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<Expression>, NonnullRefPtr<BindingPattern>> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- };
- enum class UpdateOp {
- Increment,
- Decrement,
- };
- class UpdateExpression final : public Expression {
- public:
- UpdateExpression(SourceRange source_range, UpdateOp op, NonnullRefPtr<Expression> argument, bool prefixed = false)
- : Expression(source_range)
- , m_op(op)
- , m_argument(move(argument))
- , m_prefixed(prefixed)
- {
- }
- virtual Value 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<Expression> m_argument;
- bool m_prefixed;
- };
- enum class DeclarationKind {
- Var,
- Let,
- Const,
- };
- class VariableDeclarator final : public ASTNode {
- public:
- VariableDeclarator(SourceRange source_range, NonnullRefPtr<Identifier> id)
- : ASTNode(source_range)
- , m_target(move(id))
- {
- }
- VariableDeclarator(SourceRange source_range, NonnullRefPtr<Identifier> target, RefPtr<Expression> init)
- : ASTNode(source_range)
- , m_target(move(target))
- , m_init(move(init))
- {
- }
- VariableDeclarator(SourceRange source_range, Variant<NonnullRefPtr<Identifier>, NonnullRefPtr<BindingPattern>> target, RefPtr<Expression> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- Variant<NonnullRefPtr<Identifier>, NonnullRefPtr<BindingPattern>> m_target;
- RefPtr<Expression> m_init;
- };
- class VariableDeclaration final : public Declaration {
- public:
- VariableDeclaration(SourceRange source_range, DeclarationKind declaration_kind, NonnullRefPtrVector<VariableDeclarator> declarations)
- : Declaration(source_range)
- , m_declaration_kind(declaration_kind)
- , m_declarations(move(declarations))
- {
- }
- DeclarationKind declaration_kind() const { return m_declaration_kind; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- NonnullRefPtrVector<VariableDeclarator> const& declarations() const { return m_declarations; }
- virtual void for_each_bound_name(IteratorOrVoidFunction<FlyString const&> 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<VariableDeclarator> m_declarations;
- };
- class ObjectProperty final : public ASTNode {
- public:
- enum class Type {
- KeyValue,
- Getter,
- Setter,
- Spread,
- };
- ObjectProperty(SourceRange source_range, NonnullRefPtr<Expression> key, RefPtr<Expression> 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 Value execute(Interpreter&, GlobalObject&) const override;
- private:
- NonnullRefPtr<Expression> m_key;
- RefPtr<Expression> m_value;
- Type m_property_type;
- bool m_is_method { false };
- };
- class ObjectExpression final : public Expression {
- public:
- explicit ObjectExpression(SourceRange source_range, NonnullRefPtrVector<ObjectProperty> properties = {}, Optional<SourceRange> first_invalid_property_range = {})
- : Expression(source_range)
- , m_properties(move(properties))
- , m_first_invalid_property_range(move(first_invalid_property_range))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- Optional<SourceRange> const& invalid_property_range() const { return m_first_invalid_property_range; }
- private:
- NonnullRefPtrVector<ObjectProperty> m_properties;
- Optional<SourceRange> m_first_invalid_property_range;
- };
- class ArrayExpression final : public Expression {
- public:
- ArrayExpression(SourceRange source_range, Vector<RefPtr<Expression>> elements)
- : Expression(source_range)
- , m_elements(move(elements))
- {
- }
- Vector<RefPtr<Expression>> const& elements() const { return m_elements; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- Vector<RefPtr<Expression>> m_elements;
- };
- class TemplateLiteral final : public Expression {
- public:
- TemplateLiteral(SourceRange source_range, NonnullRefPtrVector<Expression> expressions)
- : Expression(source_range)
- , m_expressions(move(expressions))
- {
- }
- TemplateLiteral(SourceRange source_range, NonnullRefPtrVector<Expression> expressions, NonnullRefPtrVector<Expression> raw_strings)
- : Expression(source_range)
- , m_expressions(move(expressions))
- , m_raw_strings(move(raw_strings))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- NonnullRefPtrVector<Expression> const& expressions() const { return m_expressions; }
- NonnullRefPtrVector<Expression> const& raw_strings() const { return m_raw_strings; }
- private:
- NonnullRefPtrVector<Expression> const m_expressions;
- NonnullRefPtrVector<Expression> const m_raw_strings;
- };
- class TaggedTemplateLiteral final : public Expression {
- public:
- TaggedTemplateLiteral(SourceRange source_range, NonnullRefPtr<Expression> tag, NonnullRefPtr<TemplateLiteral> template_literal)
- : Expression(source_range)
- , m_tag(move(tag))
- , m_template_literal(move(template_literal))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> const m_tag;
- NonnullRefPtr<TemplateLiteral> const m_template_literal;
- };
- class MemberExpression final : public Expression {
- public:
- MemberExpression(SourceRange source_range, NonnullRefPtr<Expression> object, NonnullRefPtr<Expression> property, bool computed = false)
- : Expression(source_range)
- , m_object(move(object))
- , m_property(move(property))
- , m_computed(computed)
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual Reference 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; }
- PropertyKey computed_property_name(Interpreter&, GlobalObject&) const;
- String to_string_approximation() const;
- bool ends_in_private_name() const;
- private:
- virtual bool is_member_expression() const override { return true; }
- NonnullRefPtr<Expression> m_object;
- NonnullRefPtr<Expression> m_property;
- bool m_computed { false };
- };
- class OptionalChain final : public Expression {
- public:
- enum class Mode {
- Optional,
- NotOptional,
- };
- struct Call {
- Vector<CallExpression::Argument> arguments;
- Mode mode;
- };
- struct ComputedReference {
- NonnullRefPtr<Expression> expression;
- Mode mode;
- };
- struct MemberReference {
- NonnullRefPtr<Identifier> identifier;
- Mode mode;
- };
- struct PrivateMemberReference {
- NonnullRefPtr<PrivateIdentifier> private_identifier;
- Mode mode;
- };
- using Reference = Variant<Call, ComputedReference, MemberReference, PrivateMemberReference>;
- OptionalChain(SourceRange source_range, NonnullRefPtr<Expression> base, Vector<Reference> references)
- : Expression(source_range)
- , m_base(move(base))
- , m_references(move(references))
- {
- }
- virtual Value execute(Interpreter& interpreter, GlobalObject& global_object) const override;
- virtual JS::Reference to_reference(Interpreter& interpreter, GlobalObject& global_object) const override;
- virtual void dump(int indent) const override;
- private:
- struct ReferenceAndValue {
- JS::Reference reference;
- Value value;
- };
- Optional<ReferenceAndValue> to_reference_and_value(Interpreter&, GlobalObject&) const;
- NonnullRefPtr<Expression> m_base;
- Vector<Reference> 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- Type m_type;
- };
- class ConditionalExpression final : public Expression {
- public:
- ConditionalExpression(SourceRange source_range, NonnullRefPtr<Expression> test, NonnullRefPtr<Expression> consequent, NonnullRefPtr<Expression> alternate)
- : Expression(source_range)
- , m_test(move(test))
- , m_consequent(move(consequent))
- , m_alternate(move(alternate))
- {
- }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_test;
- NonnullRefPtr<Expression> m_consequent;
- NonnullRefPtr<Expression> m_alternate;
- };
- class CatchClause final : public ASTNode {
- public:
- CatchClause(SourceRange source_range, FlyString parameter, NonnullRefPtr<BlockStatement> body)
- : ASTNode(source_range)
- , m_parameter(move(parameter))
- , m_body(move(body))
- {
- }
- CatchClause(SourceRange source_range, NonnullRefPtr<BindingPattern> parameter, NonnullRefPtr<BlockStatement> 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 Value execute(Interpreter&, GlobalObject&) const override;
- private:
- Variant<FlyString, NonnullRefPtr<BindingPattern>> m_parameter;
- NonnullRefPtr<BlockStatement> m_body;
- };
- class TryStatement final : public LabelableStatement {
- public:
- TryStatement(SourceRange source_range, NonnullRefPtr<BlockStatement> block, RefPtr<CatchClause> handler, RefPtr<BlockStatement> finalizer)
- : LabelableStatement(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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- void add_label(FlyString string) override;
- private:
- NonnullRefPtr<BlockStatement> m_block;
- RefPtr<CatchClause> m_handler;
- RefPtr<BlockStatement> m_finalizer;
- };
- class ThrowStatement final : public Statement {
- public:
- explicit ThrowStatement(SourceRange source_range, NonnullRefPtr<Expression> argument)
- : Statement(source_range)
- , m_argument(move(argument))
- {
- }
- Expression const& argument() const { return m_argument; }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtr<Expression> m_argument;
- };
- class SwitchCase final : public ScopeNode {
- public:
- SwitchCase(SourceRange source_range, RefPtr<Expression> test)
- : ScopeNode(source_range)
- , m_test(move(test))
- {
- }
- Expression const* test() const { return m_test; }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- private:
- RefPtr<Expression> m_test;
- };
- class SwitchStatement final : public ScopeNode {
- public:
- SwitchStatement(SourceRange source_range, NonnullRefPtr<Expression> discriminant)
- : ScopeNode(source_range)
- , m_discriminant(move(discriminant))
- {
- }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- void add_case(NonnullRefPtr<SwitchCase> switch_case) { m_cases.append(move(switch_case)); }
- private:
- NonnullRefPtr<Expression> m_discriminant;
- NonnullRefPtrVector<SwitchCase> 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 Value 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 Value 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 Value 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 Value execute(Interpreter&, GlobalObject&) const override { return m_value; }
- virtual Reference to_reference(Interpreter&, GlobalObject&) const override { return m_reference; }
- private:
- Reference m_reference;
- Value m_value;
- };
- template<typename C>
- void BindingPattern::for_each_bound_name(C&& callback) const
- {
- for (auto& entry : entries) {
- auto& alias = entry.alias;
- if (alias.has<NonnullRefPtr<Identifier>>()) {
- callback(alias.get<NonnullRefPtr<Identifier>>()->string());
- } else if (alias.has<NonnullRefPtr<BindingPattern>>()) {
- alias.get<NonnullRefPtr<BindingPattern>>()->for_each_bound_name(forward<C>(callback));
- } else {
- auto& name = entry.name;
- if (name.has<NonnullRefPtr<Identifier>>())
- callback(name.get<NonnullRefPtr<Identifier>>()->string());
- }
- }
- }
- template<>
- inline bool ASTNode::fast_is<NewExpression>() const { return is_new_expression(); }
- template<>
- inline bool ASTNode::fast_is<MemberExpression>() const { return is_member_expression(); }
- template<>
- inline bool ASTNode::fast_is<SuperExpression>() const { return is_super_expression(); }
- template<>
- inline bool ASTNode::fast_is<FunctionExpression>() const { return is_function_expression(); }
- template<>
- inline bool ASTNode::fast_is<ClassExpression>() const { return is_class_expression(); }
- template<>
- inline bool ASTNode::fast_is<Identifier>() const { return is_identifier(); }
- template<>
- inline bool ASTNode::fast_is<ExpressionStatement>() const { return is_expression_statement(); }
- template<>
- inline bool ASTNode::fast_is<ScopeNode>() const { return is_scope_node(); }
- template<>
- inline bool ASTNode::fast_is<Program>() const { return is_program(); }
- template<>
- inline bool ASTNode::fast_is<FunctionDeclaration>() const { return is_function_declaration(); }
- }
|