2020-03-07 18:42:11 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
#include <AK/NonnullRefPtrVector.h>
|
|
|
|
#include <AK/RefPtr.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <AK/String.h>
|
2020-03-12 11:22:13 +00:00
|
|
|
#include <AK/Vector.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
#include <LibJS/Forward.h>
|
2020-03-16 13:20:30 +00:00
|
|
|
#include <LibJS/Runtime/Value.h>
|
2020-03-07 18:42:11 +00:00
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
template<class T, class... Args>
|
|
|
|
static inline NonnullRefPtr<T>
|
|
|
|
create_ast_node(Args&&... args)
|
|
|
|
{
|
|
|
|
return adopt(*new T(forward<Args>(args)...));
|
|
|
|
}
|
|
|
|
|
|
|
|
class ASTNode : public RefCounted<ASTNode> {
|
2020-03-07 18:42:11 +00:00
|
|
|
public:
|
|
|
|
virtual ~ASTNode() {}
|
|
|
|
virtual const char* class_name() const = 0;
|
|
|
|
virtual Value execute(Interpreter&) const = 0;
|
|
|
|
virtual void dump(int indent) const;
|
2020-03-09 20:13:55 +00:00
|
|
|
virtual bool is_identifier() const { return false; }
|
2020-03-07 18:42:11 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
ASTNode() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class Statement : public ASTNode {
|
2020-03-14 11:56:49 +00:00
|
|
|
public:
|
|
|
|
virtual bool is_variable_declaration() const { return false; }
|
2020-03-11 18:27:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ErrorStatement final : public Statement {
|
|
|
|
public:
|
2020-03-15 21:33:38 +00:00
|
|
|
Value execute(Interpreter&) const override { return js_undefined(); }
|
2020-03-11 18:27:43 +00:00
|
|
|
const char* class_name() const override { return "ErrorStatement"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class ExpressionStatement final : public Statement {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
ExpressionStatement(NonnullRefPtr<Expression> expression)
|
2020-03-11 18:27:43 +00:00
|
|
|
: m_expression(move(expression))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Value execute(Interpreter&) const override;
|
|
|
|
const char* class_name() const override { return "ExpressionStatement"; }
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_expression;
|
2020-03-11 18:27:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class ScopeNode : public Statement {
|
2020-03-07 18:42:11 +00:00
|
|
|
public:
|
|
|
|
template<typename T, typename... Args>
|
|
|
|
T& append(Args&&... args)
|
|
|
|
{
|
2020-03-19 10:02:20 +00:00
|
|
|
auto child = create_ast_node<T>(forward<Args>(args)...);
|
2020-03-07 18:42:11 +00:00
|
|
|
m_children.append(move(child));
|
|
|
|
return static_cast<T&>(m_children.last());
|
|
|
|
}
|
2020-03-18 10:23:53 +00:00
|
|
|
void append(NonnullRefPtr<Statement> child)
|
2020-03-11 18:27:43 +00:00
|
|
|
{
|
|
|
|
m_children.append(move(child));
|
|
|
|
}
|
2020-03-07 18:42:11 +00:00
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
const NonnullRefPtrVector<Statement>& children() const { return m_children; }
|
2020-03-07 18:42:11 +00:00
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
ScopeNode() {}
|
|
|
|
|
|
|
|
private:
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtrVector<Statement> m_children;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Program : public ScopeNode {
|
|
|
|
public:
|
|
|
|
Program() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "Program"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class BlockStatement : public ScopeNode {
|
|
|
|
public:
|
|
|
|
BlockStatement() {}
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "BlockStatement"; }
|
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class FunctionDeclaration : public Statement {
|
2020-03-07 18:42:11 +00:00
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
FunctionDeclaration(String name, NonnullRefPtr<ScopeNode> body, Vector<String> parameters = {})
|
2020-03-07 18:42:11 +00:00
|
|
|
: m_name(move(name))
|
|
|
|
, m_body(move(body))
|
2020-03-12 11:22:13 +00:00
|
|
|
, m_parameters(move(parameters))
|
2020-03-07 18:42:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
String name() const { return m_name; }
|
|
|
|
const ScopeNode& body() const { return *m_body; }
|
2020-03-12 11:22:13 +00:00
|
|
|
const Vector<String>& parameters() const { return m_parameters; };
|
2020-03-07 18:42:11 +00:00
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "FunctionDeclaration"; }
|
|
|
|
|
|
|
|
String m_name;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<ScopeNode> m_body;
|
2020-03-12 11:22:13 +00:00
|
|
|
const Vector<String> m_parameters;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Expression : public ASTNode {
|
|
|
|
public:
|
2020-03-15 14:01:10 +00:00
|
|
|
virtual bool is_member_expression() const { return false; }
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class ErrorExpression final : public Expression {
|
|
|
|
public:
|
2020-03-15 21:33:38 +00:00
|
|
|
Value execute(Interpreter&) const override { return js_undefined(); }
|
2020-03-11 18:27:43 +00:00
|
|
|
const char* class_name() const override { return "ErrorExpression"; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class ReturnStatement : public Statement {
|
2020-03-07 18:42:11 +00:00
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
explicit ReturnStatement(RefPtr<Expression> argument)
|
2020-03-07 18:42:11 +00:00
|
|
|
: m_argument(move(argument))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
const Expression* argument() const { return m_argument; }
|
2020-03-07 18:42:11 +00:00
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "ReturnStatement"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
RefPtr<Expression> m_argument;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class IfStatement : public Statement {
|
2020-03-08 05:58:58 +00:00
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
IfStatement(NonnullRefPtr<Expression> predicate, NonnullRefPtr<ScopeNode> consequent, NonnullRefPtr<ScopeNode> alternate)
|
2020-03-08 05:58:58 +00:00
|
|
|
: m_predicate(move(predicate))
|
|
|
|
, m_consequent(move(consequent))
|
|
|
|
, m_alternate(move(alternate))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const Expression& predicate() const { return *m_predicate; }
|
|
|
|
const ScopeNode& consequent() const { return *m_consequent; }
|
|
|
|
const ScopeNode& alternate() const { return *m_alternate; }
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "IfStatement"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_predicate;
|
|
|
|
NonnullRefPtr<ScopeNode> m_consequent;
|
|
|
|
NonnullRefPtr<ScopeNode> m_alternate;
|
2020-03-08 05:58:58 +00:00
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class WhileStatement : public Statement {
|
2020-03-08 19:22:21 +00:00
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
WhileStatement(NonnullRefPtr<Expression> predicate, NonnullRefPtr<ScopeNode> body)
|
2020-03-08 19:22:21 +00:00
|
|
|
: m_predicate(move(predicate))
|
|
|
|
, m_body(move(body))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const Expression& predicate() const { return *m_predicate; }
|
|
|
|
const ScopeNode& body() const { return *m_body; }
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "WhileStatement"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_predicate;
|
|
|
|
NonnullRefPtr<ScopeNode> m_body;
|
2020-03-08 19:22:21 +00:00
|
|
|
};
|
|
|
|
|
2020-03-12 12:12:12 +00:00
|
|
|
class ForStatement : public Statement {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
ForStatement(RefPtr<Statement> init, RefPtr<Expression> test, RefPtr<Expression> update, NonnullRefPtr<ScopeNode> body)
|
2020-03-12 12:12:12 +00:00
|
|
|
: m_init(move(init))
|
|
|
|
, m_test(move(test))
|
|
|
|
, m_update(move(update))
|
|
|
|
, m_body(move(body))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const Statement* init() const { return m_init; }
|
|
|
|
const Expression* test() const { return m_test; }
|
|
|
|
const Expression* update() const { return m_update; }
|
|
|
|
const ScopeNode& body() const { return *m_body; }
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "ForStatement"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
RefPtr<Statement> m_init;
|
|
|
|
RefPtr<Expression> m_test;
|
|
|
|
RefPtr<Expression> m_update;
|
|
|
|
NonnullRefPtr<ScopeNode> m_body;
|
2020-03-12 12:12:12 +00:00
|
|
|
};
|
|
|
|
|
2020-03-07 18:42:11 +00:00
|
|
|
enum class BinaryOp {
|
|
|
|
Plus,
|
|
|
|
Minus,
|
2020-03-12 12:04:52 +00:00
|
|
|
Asterisk,
|
|
|
|
Slash,
|
2020-03-08 05:53:02 +00:00
|
|
|
TypedEquals,
|
2020-03-08 21:27:18 +00:00
|
|
|
TypedInequals,
|
2020-03-15 22:23:38 +00:00
|
|
|
AbstractEquals,
|
|
|
|
AbstractInequals,
|
2020-03-10 10:35:05 +00:00
|
|
|
GreaterThan,
|
2020-03-12 12:07:08 +00:00
|
|
|
GreaterThanEquals,
|
2020-03-10 10:35:05 +00:00
|
|
|
LessThan,
|
2020-03-12 12:07:08 +00:00
|
|
|
LessThanEquals,
|
2020-03-10 10:35:05 +00:00
|
|
|
BitwiseAnd,
|
|
|
|
BitwiseOr,
|
|
|
|
BitwiseXor,
|
|
|
|
LeftShift,
|
|
|
|
RightShift,
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class BinaryExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
BinaryExpression(BinaryOp op, NonnullRefPtr<Expression> lhs, NonnullRefPtr<Expression> rhs)
|
2020-03-07 18:42:11 +00:00
|
|
|
: m_op(op)
|
|
|
|
, m_lhs(move(lhs))
|
|
|
|
, m_rhs(move(rhs))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "BinaryExpression"; }
|
|
|
|
|
|
|
|
BinaryOp m_op;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_lhs;
|
|
|
|
NonnullRefPtr<Expression> m_rhs;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
2020-03-08 05:55:44 +00:00
|
|
|
enum class LogicalOp {
|
|
|
|
And,
|
|
|
|
Or,
|
|
|
|
};
|
|
|
|
|
|
|
|
class LogicalExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
LogicalExpression(LogicalOp op, NonnullRefPtr<Expression> lhs, NonnullRefPtr<Expression> rhs)
|
2020-03-08 05:55:44 +00:00
|
|
|
: m_op(op)
|
|
|
|
, m_lhs(move(lhs))
|
|
|
|
, m_rhs(move(rhs))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "LogicalExpression"; }
|
|
|
|
|
|
|
|
LogicalOp m_op;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_lhs;
|
|
|
|
NonnullRefPtr<Expression> m_rhs;
|
2020-03-08 05:55:44 +00:00
|
|
|
};
|
|
|
|
|
2020-03-08 21:27:18 +00:00
|
|
|
enum class UnaryOp {
|
2020-03-14 18:43:35 +00:00
|
|
|
BitwiseNot,
|
2020-03-09 17:04:44 +00:00
|
|
|
Not,
|
2020-03-17 19:33:32 +00:00
|
|
|
Typeof,
|
2020-03-08 21:27:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class UnaryExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
UnaryExpression(UnaryOp op, NonnullRefPtr<Expression> lhs)
|
2020-03-08 21:27:18 +00:00
|
|
|
: m_op(op)
|
|
|
|
, m_lhs(move(lhs))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "UnaryExpression"; }
|
|
|
|
|
|
|
|
UnaryOp m_op;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_lhs;
|
2020-03-08 21:27:18 +00:00
|
|
|
};
|
|
|
|
|
2020-03-07 18:42:11 +00:00
|
|
|
class Literal : public Expression {
|
2020-03-12 11:19:11 +00:00
|
|
|
protected:
|
|
|
|
explicit Literal() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
class BooleanLiteral final : public Literal {
|
|
|
|
public:
|
|
|
|
explicit BooleanLiteral(bool value)
|
|
|
|
: m_value(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "BooleanLiteral"; }
|
|
|
|
|
|
|
|
bool m_value { false };
|
|
|
|
};
|
|
|
|
|
|
|
|
class NumericLiteral final : public Literal {
|
2020-03-07 18:42:11 +00:00
|
|
|
public:
|
2020-03-12 11:19:11 +00:00
|
|
|
explicit NumericLiteral(double value)
|
|
|
|
: m_value(value)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "NumericLiteral"; }
|
|
|
|
|
|
|
|
double m_value { 0 };
|
|
|
|
};
|
|
|
|
|
|
|
|
class StringLiteral final : public Literal {
|
|
|
|
public:
|
|
|
|
explicit StringLiteral(String value)
|
2020-03-07 18:42:11 +00:00
|
|
|
: m_value(move(value))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-12 11:19:11 +00:00
|
|
|
virtual Value execute(Interpreter&) const override;
|
2020-03-07 18:42:11 +00:00
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
2020-03-12 11:19:11 +00:00
|
|
|
virtual const char* class_name() const override { return "StringLiteral"; }
|
2020-03-07 18:42:11 +00:00
|
|
|
|
2020-03-12 11:19:11 +00:00
|
|
|
String m_value;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
2020-03-15 21:32:34 +00:00
|
|
|
class NullLiteral final : public Literal {
|
|
|
|
public:
|
|
|
|
explicit NullLiteral()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "NullLiteral"; }
|
|
|
|
|
|
|
|
String m_value;
|
|
|
|
};
|
|
|
|
|
|
|
|
class UndefinedLiteral final : public Literal {
|
|
|
|
public:
|
|
|
|
explicit UndefinedLiteral()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "UndefinedLiteral"; }
|
|
|
|
};
|
|
|
|
|
2020-03-10 10:48:49 +00:00
|
|
|
class Identifier final : public Expression {
|
2020-03-09 20:13:55 +00:00
|
|
|
public:
|
|
|
|
explicit Identifier(String string)
|
|
|
|
: m_string(move(string))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
const String& string() const { return m_string; }
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
virtual bool is_identifier() const override { return true; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "Identifier"; }
|
|
|
|
|
|
|
|
String m_string;
|
|
|
|
};
|
|
|
|
|
2020-03-07 18:42:11 +00:00
|
|
|
class CallExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
explicit CallExpression(NonnullRefPtr<Expression> callee, NonnullRefPtrVector<Expression> arguments = {})
|
2020-03-12 22:02:41 +00:00
|
|
|
: m_callee(move(callee))
|
2020-03-12 11:22:13 +00:00
|
|
|
, m_arguments(move(arguments))
|
2020-03-07 18:42:11 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "CallExpression"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_callee;
|
|
|
|
const NonnullRefPtrVector<Expression> m_arguments;
|
2020-03-07 18:42:11 +00:00
|
|
|
};
|
|
|
|
|
2020-03-09 20:13:55 +00:00
|
|
|
enum class AssignmentOp {
|
2020-03-12 12:54:56 +00:00
|
|
|
Assignment,
|
|
|
|
AdditionAssignment,
|
|
|
|
SubtractionAssignment,
|
|
|
|
MultiplicationAssignment,
|
|
|
|
DivisionAssignment,
|
2020-03-09 20:13:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class AssignmentExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
AssignmentExpression(AssignmentOp op, NonnullRefPtr<ASTNode> lhs, NonnullRefPtr<Expression> rhs)
|
2020-03-09 20:13:55 +00:00
|
|
|
: m_op(op)
|
|
|
|
, m_lhs(move(lhs))
|
|
|
|
, m_rhs(move(rhs))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "AssignmentExpression"; }
|
|
|
|
|
|
|
|
AssignmentOp m_op;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<ASTNode> m_lhs;
|
|
|
|
NonnullRefPtr<Expression> m_rhs;
|
2020-03-09 20:13:55 +00:00
|
|
|
};
|
|
|
|
|
2020-03-12 11:45:45 +00:00
|
|
|
enum class UpdateOp {
|
|
|
|
Increment,
|
|
|
|
Decrement,
|
|
|
|
};
|
|
|
|
|
|
|
|
class UpdateExpression : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
UpdateExpression(UpdateOp op, NonnullRefPtr<Expression> argument, bool prefixed = false)
|
2020-03-12 11:45:45 +00:00
|
|
|
: m_op(op)
|
|
|
|
, m_argument(move(argument))
|
2020-03-14 18:44:57 +00:00
|
|
|
, m_prefixed(prefixed)
|
2020-03-12 11:45:45 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "UpdateExpression"; }
|
|
|
|
|
|
|
|
UpdateOp m_op;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Identifier> m_argument;
|
2020-03-14 18:44:57 +00:00
|
|
|
bool m_prefixed;
|
2020-03-12 11:45:45 +00:00
|
|
|
};
|
|
|
|
|
2020-03-11 19:09:20 +00:00
|
|
|
enum class DeclarationType {
|
|
|
|
Var,
|
|
|
|
Let,
|
2020-03-12 12:24:34 +00:00
|
|
|
Const,
|
2020-03-11 19:09:20 +00:00
|
|
|
};
|
|
|
|
|
2020-03-11 18:27:43 +00:00
|
|
|
class VariableDeclaration : public Statement {
|
2020-03-09 20:13:55 +00:00
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
VariableDeclaration(NonnullRefPtr<Identifier> name, RefPtr<Expression> initializer, DeclarationType declaration_type)
|
2020-03-11 19:09:20 +00:00
|
|
|
: m_declaration_type(declaration_type)
|
|
|
|
, m_name(move(name))
|
2020-03-09 20:13:55 +00:00
|
|
|
, m_initializer(move(initializer))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-03-14 11:56:49 +00:00
|
|
|
virtual bool is_variable_declaration() const override { return true; }
|
2020-03-09 20:13:55 +00:00
|
|
|
const Identifier& name() const { return *m_name; }
|
2020-03-14 11:56:49 +00:00
|
|
|
DeclarationType declaration_type() const { return m_declaration_type; }
|
2020-03-09 20:13:55 +00:00
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "VariableDeclaration"; }
|
|
|
|
|
2020-03-11 19:09:20 +00:00
|
|
|
DeclarationType m_declaration_type;
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Identifier> m_name;
|
|
|
|
RefPtr<Expression> m_initializer;
|
2020-03-09 20:13:55 +00:00
|
|
|
};
|
|
|
|
|
2020-03-09 20:28:31 +00:00
|
|
|
class ObjectExpression : public Expression {
|
|
|
|
public:
|
|
|
|
ObjectExpression() {}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual const char* class_name() const override { return "ObjectExpression"; }
|
|
|
|
};
|
|
|
|
|
2020-03-11 17:58:19 +00:00
|
|
|
class MemberExpression final : public Expression {
|
|
|
|
public:
|
2020-03-18 10:23:53 +00:00
|
|
|
MemberExpression(NonnullRefPtr<Expression> object, NonnullRefPtr<Expression> property)
|
2020-03-11 17:58:19 +00:00
|
|
|
: m_object(move(object))
|
|
|
|
, m_property(move(property))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual Value execute(Interpreter&) const override;
|
|
|
|
virtual void dump(int indent) const override;
|
|
|
|
|
2020-03-15 14:01:10 +00:00
|
|
|
const Expression& object() const { return *m_object; }
|
|
|
|
|
2020-03-11 17:58:19 +00:00
|
|
|
private:
|
2020-03-15 14:01:10 +00:00
|
|
|
virtual bool is_member_expression() const override { return true; }
|
2020-03-11 17:58:19 +00:00
|
|
|
virtual const char* class_name() const override { return "MemberExpression"; }
|
|
|
|
|
2020-03-18 10:23:53 +00:00
|
|
|
NonnullRefPtr<Expression> m_object;
|
|
|
|
NonnullRefPtr<Expression> m_property;
|
2020-03-11 17:58:19 +00:00
|
|
|
};
|
|
|
|
|
2020-03-07 18:42:11 +00:00
|
|
|
}
|