mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibJS: Parse object expressions
This commit is contained in:
parent
c64b5e73f5
commit
bc002f807a
Notes:
sideshowbarker
2024-07-19 08:12:30 +09:00
Author: https://github.com/0xtechnobabble Commit: https://github.com/SerenityOS/serenity/commit/bc002f807a1 Pull-request: https://github.com/SerenityOS/serenity/pull/1494
7 changed files with 48 additions and 4 deletions
7
Base/home/anon/js/object-expression.js
Normal file
7
Base/home/anon/js/object-expression.js
Normal file
|
@ -0,0 +1,7 @@
|
|||
const a = 1;
|
||||
const object = {a, b: 2};
|
||||
const emptyObject = {};
|
||||
|
||||
console.log(object.a);
|
||||
console.log(object.b);
|
||||
console.log(emptyObject.foo);
|
|
@ -623,6 +623,11 @@ void VariableDeclaration::dump(int indent) const
|
|||
void ObjectExpression::dump(int indent) const
|
||||
{
|
||||
ASTNode::dump(indent);
|
||||
for (String property_key : m_properties.keys()) {
|
||||
print_indent(indent + 1);
|
||||
printf("%s: ", property_key.characters());
|
||||
m_properties.get(property_key).value()->dump(0);
|
||||
}
|
||||
}
|
||||
|
||||
void ExpressionStatement::dump(int indent) const
|
||||
|
@ -633,7 +638,12 @@ void ExpressionStatement::dump(int indent) const
|
|||
|
||||
Value ObjectExpression::execute(Interpreter& interpreter) const
|
||||
{
|
||||
return interpreter.heap().allocate<Object>();
|
||||
auto object = interpreter.heap().allocate<Object>();
|
||||
for (String property_key : m_properties.keys()) {
|
||||
object->put(property_key, m_properties.get(property_key).value()->execute(interpreter));
|
||||
}
|
||||
|
||||
return object;
|
||||
}
|
||||
|
||||
void MemberExpression::dump(int indent) const
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/HashMap.h>
|
||||
#include <AK/NonnullRefPtrVector.h>
|
||||
#include <AK/RefPtr.h>
|
||||
#include <AK/String.h>
|
||||
|
@ -572,13 +573,18 @@ private:
|
|||
|
||||
class ObjectExpression : public Expression {
|
||||
public:
|
||||
ObjectExpression() {}
|
||||
ObjectExpression(HashMap<String, NonnullRefPtr<Expression>> properties = {})
|
||||
: m_properties(properties)
|
||||
{
|
||||
}
|
||||
|
||||
virtual Value execute(Interpreter&) const override;
|
||||
virtual void dump(int indent) const override;
|
||||
|
||||
private:
|
||||
virtual const char* class_name() const override { return "ObjectExpression"; }
|
||||
|
||||
HashMap<String, NonnullRefPtr<Expression>> m_properties;
|
||||
};
|
||||
|
||||
class ArrayExpression : public Expression {
|
||||
|
|
|
@ -107,6 +107,7 @@ Lexer::Lexer(StringView source)
|
|||
s_single_char_tokens.set('[', TokenType::BracketOpen);
|
||||
s_single_char_tokens.set(']', TokenType::BracketClose);
|
||||
s_single_char_tokens.set('^', TokenType::Caret);
|
||||
s_single_char_tokens.set(':', TokenType::Colon);
|
||||
s_single_char_tokens.set(',', TokenType::Comma);
|
||||
s_single_char_tokens.set('{', TokenType::CurlyOpen);
|
||||
s_single_char_tokens.set('}', TokenType::CurlyClose);
|
||||
|
|
|
@ -269,10 +269,27 @@ NonnullRefPtr<Expression> Parser::parse_unary_prefixed_expression()
|
|||
|
||||
NonnullRefPtr<ObjectExpression> Parser::parse_object_expression()
|
||||
{
|
||||
// FIXME: Parse actual object expression
|
||||
HashMap<String, NonnullRefPtr<Expression>> properties;
|
||||
consume(TokenType::CurlyOpen);
|
||||
|
||||
while (!match(TokenType::CurlyClose)) {
|
||||
auto identifier = create_ast_node<Identifier>(consume(TokenType::Identifier).value());
|
||||
|
||||
if (match(TokenType::Colon)) {
|
||||
consume(TokenType::Colon);
|
||||
properties.set(identifier->string(), parse_expression(0));
|
||||
} else {
|
||||
properties.set(identifier->string(), identifier);
|
||||
}
|
||||
|
||||
if (!match(TokenType::Comma))
|
||||
break;
|
||||
|
||||
consume(TokenType::Comma);
|
||||
}
|
||||
|
||||
consume(TokenType::CurlyClose);
|
||||
return create_ast_node<ObjectExpression>();
|
||||
return create_ast_node<ObjectExpression>(properties);
|
||||
}
|
||||
|
||||
NonnullRefPtr<ArrayExpression> Parser::parse_array_expression()
|
||||
|
|
|
@ -57,6 +57,8 @@ const char* Token::name(TokenType type)
|
|||
return "Catch";
|
||||
case TokenType::Class:
|
||||
return "Class";
|
||||
case TokenType::Colon:
|
||||
return "Colon";
|
||||
case TokenType::Comma:
|
||||
return "Comma";
|
||||
case TokenType::Const:
|
||||
|
|
|
@ -44,6 +44,7 @@ enum class TokenType {
|
|||
Caret,
|
||||
Catch,
|
||||
Class,
|
||||
Colon,
|
||||
Comma,
|
||||
Const,
|
||||
CurlyClose,
|
||||
|
|
Loading…
Reference in a new issue