1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372 |
- /*
- * Copyright (c) 2020-2021, Andreas Kling <kling@serenityos.org>
- * Copyright (c) 2020, Linus Groh <linusg@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/PropertyName.h>
- #include <LibJS/Runtime/Value.h>
- #include <LibJS/SourceRange.h>
- namespace JS {
- class VariableDeclaration;
- class FunctionDeclaration;
- class Identifier;
- 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;
- protected:
- ASTNode(SourceRange source_range)
- : m_source_range(move(source_range))
- {
- }
- private:
- SourceRange m_source_range;
- };
- class Statement : public ASTNode {
- public:
- Statement(SourceRange source_range)
- : ASTNode(move(source_range))
- {
- }
- FlyString const& label() const { return m_label; }
- void set_label(FlyString string) { m_label = string; }
- protected:
- FlyString m_label;
- };
- class EmptyStatement final : public Statement {
- public:
- EmptyStatement(SourceRange source_range)
- : Statement(move(source_range))
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- };
- class ErrorStatement final : public Statement {
- public:
- ErrorStatement(SourceRange source_range)
- : Statement(move(source_range))
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- };
- class ExpressionStatement final : public Statement {
- public:
- ExpressionStatement(SourceRange source_range, NonnullRefPtr<Expression> expression)
- : Statement(move(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:
- NonnullRefPtr<Expression> m_expression;
- };
- class ScopeNode : public Statement {
- 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 Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- void add_variables(NonnullRefPtrVector<VariableDeclaration>);
- void add_functions(NonnullRefPtrVector<FunctionDeclaration>);
- NonnullRefPtrVector<VariableDeclaration> const& variables() const { return m_variables; }
- NonnullRefPtrVector<FunctionDeclaration> const& functions() const { return m_functions; }
- protected:
- ScopeNode(SourceRange source_range)
- : Statement(move(source_range))
- {
- }
- private:
- NonnullRefPtrVector<Statement> m_children;
- NonnullRefPtrVector<VariableDeclaration> m_variables;
- NonnullRefPtrVector<FunctionDeclaration> m_functions;
- };
- class Program final : public ScopeNode {
- public:
- Program(SourceRange source_range)
- : ScopeNode(move(source_range))
- {
- }
- 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; }
- private:
- bool m_is_strict_mode { false };
- };
- class BlockStatement final : public ScopeNode {
- public:
- BlockStatement(SourceRange source_range)
- : ScopeNode(move(source_range))
- {
- }
- };
- class Expression : public ASTNode {
- public:
- Expression(SourceRange source_range)
- : ASTNode(move(source_range))
- {
- }
- virtual Reference to_reference(Interpreter&, GlobalObject&) const;
- };
- class Declaration : public Statement {
- public:
- Declaration(SourceRange source_range)
- : Statement(move(source_range))
- {
- }
- };
- class ErrorDeclaration final : public Declaration {
- public:
- ErrorDeclaration(SourceRange source_range)
- : Declaration(move(source_range))
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- };
- struct BindingPattern : RefCounted<BindingPattern> {
- struct BindingProperty {
- RefPtr<Identifier> name;
- RefPtr<Identifier> alias;
- RefPtr<BindingPattern> pattern;
- RefPtr<Expression> initializer;
- bool is_rest { false };
- };
- enum class Kind {
- Array,
- Object,
- };
- void dump(int indent) const;
- template<typename C>
- void for_each_assigned_name(C&& callback) const;
- Vector<BindingProperty> properties;
- 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 is_generator() const { return m_is_generator; }
- protected:
- FunctionNode(FlyString const& name, NonnullRefPtr<Statement> body, Vector<Parameter> parameters, i32 function_length, NonnullRefPtrVector<VariableDeclaration> variables, bool is_generator, bool is_strict_mode)
- : m_name(name)
- , m_body(move(body))
- , m_parameters(move(parameters))
- , m_variables(move(variables))
- , m_function_length(function_length)
- , m_is_generator(is_generator)
- , m_is_strict_mode(is_strict_mode)
- {
- }
- void dump(int indent, String const& class_name) const;
- NonnullRefPtrVector<VariableDeclaration> const& variables() const { return m_variables; }
- 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;
- NonnullRefPtrVector<VariableDeclaration> m_variables;
- const i32 m_function_length;
- bool m_is_generator;
- bool m_is_strict_mode;
- };
- 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, NonnullRefPtrVector<VariableDeclaration> variables, bool is_generator, bool is_strict_mode = false)
- : Declaration(move(source_range))
- , FunctionNode(name, move(body), move(parameters), function_length, move(variables), is_generator, is_strict_mode)
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- };
- 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, NonnullRefPtrVector<VariableDeclaration> variables, bool is_generator, bool is_strict_mode, bool is_arrow_function = false)
- : Expression(source_range)
- , FunctionNode(name, move(body), move(parameters), function_length, move(variables), is_generator, is_strict_mode)
- , m_is_arrow_function(is_arrow_function)
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- void set_name_if_possible(FlyString new_name)
- {
- if (m_cannot_auto_rename)
- return;
- m_cannot_auto_rename = true;
- if (name().is_empty())
- set_name(move(new_name));
- }
- bool cannot_auto_rename() const { return m_cannot_auto_rename; }
- void set_cannot_auto_rename() { m_cannot_auto_rename = true; }
- private:
- bool m_cannot_auto_rename { false };
- bool m_is_arrow_function { false };
- };
- class ErrorExpression final : public Expression {
- public:
- explicit ErrorExpression(SourceRange source_range)
- : Expression(move(source_range))
- {
- }
- Value execute(Interpreter&, GlobalObject&) const override { return {}; }
- };
- class YieldExpression final : public Expression {
- public:
- explicit YieldExpression(SourceRange source_range, RefPtr<Expression> argument)
- : Expression(move(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 ReturnStatement final : public Statement {
- public:
- explicit ReturnStatement(SourceRange source_range, RefPtr<Expression> argument)
- : Statement(move(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(move(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 Statement {
- public:
- WhileStatement(SourceRange source_range, NonnullRefPtr<Expression> test, NonnullRefPtr<Statement> body)
- : Statement(move(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 Statement {
- public:
- DoWhileStatement(SourceRange source_range, NonnullRefPtr<Expression> test, NonnullRefPtr<Statement> body)
- : Statement(move(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(move(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 Statement {
- public:
- ForStatement(SourceRange source_range, RefPtr<ASTNode> init, RefPtr<Expression> test, RefPtr<Expression> update, NonnullRefPtr<Statement> body)
- : Statement(move(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 Statement {
- public:
- ForInStatement(SourceRange source_range, NonnullRefPtr<ASTNode> lhs, NonnullRefPtr<Expression> rhs, NonnullRefPtr<Statement> body)
- : Statement(move(source_range))
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- , m_body(move(body))
- {
- }
- ASTNode 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:
- NonnullRefPtr<ASTNode> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- NonnullRefPtr<Statement> m_body;
- };
- class ForOfStatement final : public Statement {
- public:
- ForOfStatement(SourceRange source_range, NonnullRefPtr<ASTNode> lhs, NonnullRefPtr<Expression> rhs, NonnullRefPtr<Statement> body)
- : Statement(move(source_range))
- , m_lhs(move(lhs))
- , m_rhs(move(rhs))
- , m_body(move(body))
- {
- }
- ASTNode 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:
- NonnullRefPtr<ASTNode> m_lhs;
- NonnullRefPtr<Expression> m_rhs;
- NonnullRefPtr<Statement> m_body;
- };
- enum class BinaryOp {
- Addition,
- Subtraction,
- Multiplication,
- Division,
- Modulo,
- Exponentiation,
- TypedEquals,
- TypedInequals,
- AbstractEquals,
- AbstractInequals,
- 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(move(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(move(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(move(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(move(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(move(source_range))
- {
- }
- };
- class BooleanLiteral final : public Literal {
- public:
- explicit BooleanLiteral(SourceRange source_range, bool value)
- : Literal(move(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(move(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(move(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(move(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:
- explicit RegExpLiteral(SourceRange source_range, String pattern, String flags)
- : Literal(move(source_range))
- , m_pattern(move(pattern))
- , m_flags(move(flags))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- String const& pattern() const { return m_pattern; }
- String const& flags() const { return m_flags; }
- private:
- String m_pattern;
- String m_flags;
- };
- class Identifier final : public Expression {
- public:
- explicit Identifier(SourceRange source_range, FlyString const& string)
- : Expression(move(source_range))
- , m_string(string)
- {
- }
- FlyString const& string() const { return m_string; }
- 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:
- FlyString m_string;
- };
- class ClassMethod final : public ASTNode {
- public:
- enum class Kind {
- Method,
- Getter,
- Setter,
- };
- ClassMethod(SourceRange source_range, NonnullRefPtr<Expression> key, NonnullRefPtr<FunctionExpression> function, Kind kind, bool is_static)
- : ASTNode(move(source_range))
- , m_key(move(key))
- , m_function(move(function))
- , m_kind(kind)
- , m_is_static(is_static)
- {
- }
- Expression const& key() const { return *m_key; }
- Kind kind() const { return m_kind; }
- bool is_static() const { return m_is_static; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- NonnullRefPtr<Expression> m_key;
- NonnullRefPtr<FunctionExpression> m_function;
- Kind m_kind;
- bool m_is_static;
- };
- class SuperExpression final : public Expression {
- public:
- SuperExpression(SourceRange source_range)
- : Expression(move(source_range))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- };
- class ClassExpression final : public Expression {
- public:
- ClassExpression(SourceRange source_range, String name, RefPtr<FunctionExpression> constructor, RefPtr<Expression> super_class, NonnullRefPtrVector<ClassMethod> methods)
- : Expression(move(source_range))
- , m_name(move(name))
- , m_constructor(move(constructor))
- , m_super_class(move(super_class))
- , m_methods(move(methods))
- {
- }
- StringView name() const { return m_name; }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- String m_name;
- RefPtr<FunctionExpression> m_constructor;
- RefPtr<Expression> m_super_class;
- NonnullRefPtrVector<ClassMethod> m_methods;
- };
- class ClassDeclaration final : public Declaration {
- public:
- ClassDeclaration(SourceRange source_range, NonnullRefPtr<ClassExpression> class_expression)
- : Declaration(move(source_range))
- , m_class_expression(move(class_expression))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- private:
- NonnullRefPtr<ClassExpression> m_class_expression;
- };
- class SpreadExpression final : public Expression {
- public:
- explicit SpreadExpression(SourceRange source_range, NonnullRefPtr<Expression> target)
- : Expression(move(source_range))
- , m_target(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:
- ThisExpression(SourceRange source_range)
- : Expression(move(source_range))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) 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(move(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;
- private:
- struct ThisAndCallee {
- Value this_value;
- Value callee;
- };
- ThisAndCallee compute_this_and_callee(Interpreter&, GlobalObject&) const;
- NonnullRefPtr<Expression> m_callee;
- Vector<Argument> const m_arguments;
- };
- class NewExpression final : public CallExpression {
- public:
- NewExpression(SourceRange source_range, NonnullRefPtr<Expression> callee, Vector<Argument> arguments = {})
- : CallExpression(move(source_range), move(callee), move(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(move(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;
- NonnullRefPtr<Expression> 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(move(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(move(source_range))
- , m_target(move(id))
- {
- }
- VariableDeclarator(SourceRange source_range, NonnullRefPtr<Identifier> target, RefPtr<Expression> init)
- : ASTNode(move(source_range))
- , m_target(move(target))
- , m_init(move(init))
- {
- }
- VariableDeclarator(SourceRange source_range, Variant<NonnullRefPtr<Identifier>, NonnullRefPtr<BindingPattern>> target, RefPtr<Expression> init)
- : ASTNode(move(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(move(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; }
- 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(move(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:
- ObjectExpression(SourceRange source_range, NonnullRefPtrVector<ObjectProperty> properties = {})
- : Expression(move(source_range))
- , m_properties(move(properties))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void dump(int indent) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- private:
- NonnullRefPtrVector<ObjectProperty> m_properties;
- };
- class ArrayExpression final : public Expression {
- public:
- ArrayExpression(SourceRange source_range, Vector<RefPtr<Expression>> elements)
- : Expression(move(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(move(source_range))
- , m_expressions(move(expressions))
- {
- }
- TemplateLiteral(SourceRange source_range, NonnullRefPtrVector<Expression> expressions, NonnullRefPtrVector<Expression> raw_strings)
- : Expression(move(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(move(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(move(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; }
- PropertyName computed_property_name(Interpreter&, GlobalObject&) const;
- String to_string_approximation() const;
- private:
- NonnullRefPtr<Expression> m_object;
- NonnullRefPtr<Expression> m_property;
- bool m_computed { false };
- };
- class MetaProperty final : public Expression {
- public:
- enum class Type {
- NewTarget,
- ImportMeta,
- };
- MetaProperty(SourceRange source_range, Type type)
- : Expression(move(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(move(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 const& parameter, NonnullRefPtr<BlockStatement> body)
- : ASTNode(move(source_range))
- , m_parameter(parameter)
- , m_body(move(body))
- {
- }
- FlyString const& 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:
- FlyString m_parameter;
- NonnullRefPtr<BlockStatement> m_body;
- };
- class TryStatement final : public Statement {
- public:
- TryStatement(SourceRange source_range, NonnullRefPtr<BlockStatement> block, RefPtr<CatchClause> handler, RefPtr<BlockStatement> finalizer)
- : Statement(move(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;
- 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(move(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 ASTNode {
- public:
- SwitchCase(SourceRange source_range, RefPtr<Expression> test, NonnullRefPtrVector<Statement> consequent)
- : ASTNode(move(source_range))
- , m_test(move(test))
- , m_consequent(move(consequent))
- {
- }
- Expression const* test() const { return m_test; }
- NonnullRefPtrVector<Statement> const& consequent() const { return m_consequent; }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- private:
- RefPtr<Expression> m_test;
- NonnullRefPtrVector<Statement> m_consequent;
- };
- class SwitchStatement final : public Statement {
- public:
- SwitchStatement(SourceRange source_range, NonnullRefPtr<Expression> discriminant, NonnullRefPtrVector<SwitchCase> cases)
- : Statement(move(source_range))
- , m_discriminant(move(discriminant))
- , m_cases(move(cases))
- {
- }
- virtual void dump(int indent) const override;
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- private:
- NonnullRefPtr<Expression> m_discriminant;
- NonnullRefPtrVector<SwitchCase> m_cases;
- };
- class BreakStatement final : public Statement {
- public:
- BreakStatement(SourceRange source_range, FlyString target_label)
- : Statement(move(source_range))
- , m_target_label(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(move(source_range))
- , m_target_label(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:
- DebuggerStatement(SourceRange source_range)
- : Statement(move(source_range))
- {
- }
- virtual Value execute(Interpreter&, GlobalObject&) const override;
- virtual void generate_bytecode(Bytecode::Generator&) const override;
- };
- template<typename C>
- void BindingPattern::for_each_assigned_name(C&& callback) const
- {
- for (auto& property : properties) {
- if (property.name) {
- callback(property.name->string());
- continue;
- }
- property.pattern->template for_each_assigned_name(forward<C>(callback));
- }
- }
- }
|