mirror of
https://github.com/RGBCube/serenity
synced 2025-05-21 12:15:07 +00:00
LibJS: Improve function hoisting across blocks
The parser now keeps track of a scope chain so that it can hoist function declarations to the closest function scope.
This commit is contained in:
parent
72f8d90dc5
commit
38fd980b0c
6 changed files with 79 additions and 22 deletions
|
@ -2377,4 +2377,9 @@ void ScopeNode::add_functions(NonnullRefPtrVector<FunctionDeclaration> functions
|
|||
m_functions.extend(move(functions));
|
||||
}
|
||||
|
||||
void ScopeNode::add_hoisted_functions(NonnullRefPtrVector<FunctionDeclaration> hoisted_functions)
|
||||
{
|
||||
m_hoisted_functions.extend(move(hoisted_functions));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -145,8 +145,10 @@ public:
|
|||
|
||||
void add_variables(NonnullRefPtrVector<VariableDeclaration>);
|
||||
void add_functions(NonnullRefPtrVector<FunctionDeclaration>);
|
||||
void add_hoisted_functions(NonnullRefPtrVector<FunctionDeclaration>);
|
||||
NonnullRefPtrVector<VariableDeclaration> const& variables() const { return m_variables; }
|
||||
NonnullRefPtrVector<FunctionDeclaration> const& functions() const { return m_functions; }
|
||||
NonnullRefPtrVector<FunctionDeclaration> const& hoisted_functions() const { return m_hoisted_functions; }
|
||||
|
||||
protected:
|
||||
explicit ScopeNode(SourceRange source_range)
|
||||
|
@ -160,6 +162,7 @@ private:
|
|||
NonnullRefPtrVector<Statement> m_children;
|
||||
NonnullRefPtrVector<VariableDeclaration> m_variables;
|
||||
NonnullRefPtrVector<FunctionDeclaration> m_functions;
|
||||
NonnullRefPtrVector<FunctionDeclaration> m_hoisted_functions;
|
||||
};
|
||||
|
||||
class Program final : public ScopeNode {
|
||||
|
|
|
@ -84,6 +84,9 @@ const GlobalObject& Interpreter::global_object() const
|
|||
void Interpreter::enter_scope(const ScopeNode& scope_node, ScopeType scope_type, GlobalObject& global_object)
|
||||
{
|
||||
ScopeGuard guard([&] {
|
||||
for (auto& declaration : scope_node.hoisted_functions()) {
|
||||
lexical_environment()->put_into_environment(declaration.name(), { js_undefined(), DeclarationKind::Var });
|
||||
}
|
||||
for (auto& declaration : scope_node.functions()) {
|
||||
auto* function = OrdinaryFunctionObject::create(global_object, declaration.name(), declaration.body(), declaration.parameters(), declaration.function_length(), lexical_environment(), declaration.kind(), declaration.is_strict_mode());
|
||||
vm().set_variable(declaration.name(), function, global_object);
|
||||
|
|
|
@ -31,10 +31,9 @@ public:
|
|||
enum Type {
|
||||
Var = 1,
|
||||
Let = 2,
|
||||
Function = 3,
|
||||
};
|
||||
|
||||
ScopePusher(Parser& parser, unsigned mask)
|
||||
ScopePusher(Parser& parser, unsigned mask, Parser::Scope::Type scope_type)
|
||||
: m_parser(parser)
|
||||
, m_mask(mask)
|
||||
{
|
||||
|
@ -42,8 +41,8 @@ public:
|
|||
m_parser.m_state.var_scopes.append(NonnullRefPtrVector<VariableDeclaration>());
|
||||
if (m_mask & Let)
|
||||
m_parser.m_state.let_scopes.append(NonnullRefPtrVector<VariableDeclaration>());
|
||||
if (m_mask & Function)
|
||||
m_parser.m_state.function_scopes.append(NonnullRefPtrVector<FunctionDeclaration>());
|
||||
|
||||
m_parser.m_state.current_scope = create<Parser::Scope>(scope_type, m_parser.m_state.current_scope);
|
||||
}
|
||||
|
||||
~ScopePusher()
|
||||
|
@ -52,8 +51,20 @@ public:
|
|||
m_parser.m_state.var_scopes.take_last();
|
||||
if (m_mask & Let)
|
||||
m_parser.m_state.let_scopes.take_last();
|
||||
if (m_mask & Function)
|
||||
m_parser.m_state.function_scopes.take_last();
|
||||
|
||||
auto& popped = m_parser.m_state.current_scope;
|
||||
m_parser.m_state.current_scope = popped->parent;
|
||||
}
|
||||
|
||||
void add_to_scope_node(NonnullRefPtr<ScopeNode> scope_node)
|
||||
{
|
||||
if (m_mask & Var)
|
||||
scope_node->add_variables(m_parser.m_state.var_scopes.last());
|
||||
if (m_mask & Let)
|
||||
scope_node->add_variables(m_parser.m_state.let_scopes.last());
|
||||
|
||||
scope_node->add_functions(m_parser.m_state.current_scope->function_declarations);
|
||||
scope_node->add_hoisted_functions(m_parser.m_state.current_scope->hoisted_function_declarations);
|
||||
}
|
||||
|
||||
Parser& m_parser;
|
||||
|
@ -180,6 +191,24 @@ Parser::ParserState::ParserState(Lexer l)
|
|||
{
|
||||
}
|
||||
|
||||
Parser::Scope::Scope(Parser::Scope::Type type, RefPtr<Parser::Scope> parent_scope)
|
||||
: type(type)
|
||||
, parent(move(parent_scope))
|
||||
{
|
||||
}
|
||||
|
||||
RefPtr<Parser::Scope> Parser::Scope::get_current_function_scope()
|
||||
{
|
||||
if (this->type == Parser::Scope::Function) {
|
||||
return *this;
|
||||
}
|
||||
auto result = this->parent;
|
||||
while (result->type != Parser::Scope::Function) {
|
||||
result = result->parent;
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
Parser::Parser(Lexer lexer)
|
||||
: m_state(move(lexer))
|
||||
{
|
||||
|
@ -229,7 +258,7 @@ Associativity Parser::operator_associativity(TokenType type) const
|
|||
NonnullRefPtr<Program> Parser::parse_program(bool starts_in_strict_mode)
|
||||
{
|
||||
auto rule_start = push_start();
|
||||
ScopePusher scope(*this, ScopePusher::Var | ScopePusher::Let | ScopePusher::Function);
|
||||
ScopePusher scope(*this, ScopePusher::Var | ScopePusher::Let, Scope::Function);
|
||||
auto program = adopt_ref(*new Program({ m_filename, rule_start.position(), position() }));
|
||||
if (starts_in_strict_mode) {
|
||||
program->set_strict_mode();
|
||||
|
@ -258,9 +287,7 @@ NonnullRefPtr<Program> Parser::parse_program(bool starts_in_strict_mode)
|
|||
first = false;
|
||||
}
|
||||
if (m_state.var_scopes.size() == 1) {
|
||||
program->add_variables(m_state.var_scopes.last());
|
||||
program->add_variables(m_state.let_scopes.last());
|
||||
program->add_functions(m_state.function_scopes.last());
|
||||
scope.add_to_scope_node(program);
|
||||
} else {
|
||||
syntax_error("Unclosed lexical_environment");
|
||||
}
|
||||
|
@ -276,7 +303,8 @@ NonnullRefPtr<Declaration> Parser::parse_declaration()
|
|||
return parse_class_declaration();
|
||||
case TokenType::Function: {
|
||||
auto declaration = parse_function_node<FunctionDeclaration>();
|
||||
m_state.function_scopes.last().append(declaration);
|
||||
m_state.current_scope->function_declarations.append(declaration);
|
||||
m_state.current_scope->get_current_function_scope()->hoisted_function_declarations.append(declaration);
|
||||
return declaration;
|
||||
}
|
||||
case TokenType::Let:
|
||||
|
@ -399,7 +427,10 @@ RefPtr<FunctionExpression> Parser::try_parse_arrow_function_expression(bool expe
|
|||
TemporaryChange change(m_state.in_arrow_function_context, true);
|
||||
if (match(TokenType::CurlyOpen)) {
|
||||
// Parse a function body with statements
|
||||
return parse_block_statement(is_strict);
|
||||
ScopePusher scope(*this, ScopePusher::Var, Scope::Function);
|
||||
auto body = parse_block_statement(is_strict);
|
||||
scope.add_to_scope_node(body);
|
||||
return body;
|
||||
}
|
||||
if (match_expression()) {
|
||||
// Parse a function body which returns a single expression
|
||||
|
@ -1372,7 +1403,7 @@ NonnullRefPtr<BlockStatement> Parser::parse_block_statement()
|
|||
NonnullRefPtr<BlockStatement> Parser::parse_block_statement(bool& is_strict)
|
||||
{
|
||||
auto rule_start = push_start();
|
||||
ScopePusher scope(*this, ScopePusher::Let);
|
||||
ScopePusher scope(*this, ScopePusher::Let, Parser::Scope::Block);
|
||||
auto block = create_ast_node<BlockStatement>({ m_state.current_token.filename(), rule_start.position(), position() });
|
||||
consume(TokenType::CurlyOpen);
|
||||
|
||||
|
@ -1404,8 +1435,7 @@ NonnullRefPtr<BlockStatement> Parser::parse_block_statement(bool& is_strict)
|
|||
m_state.strict_mode = initial_strict_mode_state;
|
||||
m_state.string_legacy_octal_escape_sequence_in_scope = false;
|
||||
consume(TokenType::CurlyClose);
|
||||
block->add_variables(m_state.let_scopes.last());
|
||||
block->add_functions(m_state.function_scopes.last());
|
||||
scope.add_to_scope_node(block);
|
||||
return block;
|
||||
}
|
||||
|
||||
|
@ -1418,7 +1448,7 @@ NonnullRefPtr<FunctionNodeType> Parser::parse_function_node(u8 parse_options)
|
|||
TemporaryChange super_property_access_rollback(m_state.allow_super_property_lookup, !!(parse_options & FunctionNodeParseOptions::AllowSuperPropertyLookup));
|
||||
TemporaryChange super_constructor_call_rollback(m_state.allow_super_constructor_call, !!(parse_options & FunctionNodeParseOptions::AllowSuperConstructorCall));
|
||||
|
||||
ScopePusher scope(*this, ScopePusher::Var | ScopePusher::Function);
|
||||
ScopePusher scope(*this, ScopePusher::Var, Parser::Scope::Function);
|
||||
|
||||
constexpr auto is_function_expression = IsSame<FunctionNodeType, FunctionExpression>;
|
||||
auto is_generator = (parse_options & FunctionNodeParseOptions::IsGeneratorFunction) != 0;
|
||||
|
@ -1460,8 +1490,8 @@ NonnullRefPtr<FunctionNodeType> Parser::parse_function_node(u8 parse_options)
|
|||
|
||||
m_state.function_parameters.take_last();
|
||||
|
||||
body->add_variables(m_state.var_scopes.last());
|
||||
body->add_functions(m_state.function_scopes.last());
|
||||
scope.add_to_scope_node(body);
|
||||
|
||||
return create_ast_node<FunctionNodeType>(
|
||||
{ m_state.current_token.filename(), rule_start.position(), position() },
|
||||
name, move(body), move(parameters), function_length,
|
||||
|
@ -1962,10 +1992,10 @@ NonnullRefPtr<IfStatement> Parser::parse_if_statement()
|
|||
// Code matching this production is processed as if each matching occurrence of
|
||||
// FunctionDeclaration[?Yield, ?Await, ~Default] was the sole StatementListItem
|
||||
// of a BlockStatement occupying that position in the source code.
|
||||
ScopePusher scope(*this, ScopePusher::Let);
|
||||
ScopePusher scope(*this, ScopePusher::Let, Parser::Scope::Block);
|
||||
auto block = create_ast_node<BlockStatement>({ m_state.current_token.filename(), rule_start.position(), position() });
|
||||
block->append(parse_declaration());
|
||||
block->add_functions(m_state.function_scopes.last());
|
||||
scope.add_to_scope_node(block);
|
||||
return block;
|
||||
};
|
||||
|
||||
|
|
|
@ -196,13 +196,29 @@ private:
|
|||
|
||||
[[nodiscard]] RulePosition push_start() { return { *this, position() }; }
|
||||
|
||||
struct Scope : public RefCounted<Scope> {
|
||||
enum Type {
|
||||
Function,
|
||||
Block,
|
||||
};
|
||||
|
||||
Type type;
|
||||
RefPtr<Scope> parent;
|
||||
|
||||
NonnullRefPtrVector<FunctionDeclaration> function_declarations;
|
||||
NonnullRefPtrVector<FunctionDeclaration> hoisted_function_declarations;
|
||||
|
||||
explicit Scope(Type, RefPtr<Scope>);
|
||||
RefPtr<Scope> get_current_function_scope();
|
||||
};
|
||||
|
||||
struct ParserState {
|
||||
Lexer lexer;
|
||||
Token current_token;
|
||||
Vector<Error> errors;
|
||||
Vector<NonnullRefPtrVector<VariableDeclaration>> var_scopes;
|
||||
Vector<NonnullRefPtrVector<VariableDeclaration>> let_scopes;
|
||||
Vector<NonnullRefPtrVector<FunctionDeclaration>> function_scopes;
|
||||
RefPtr<Scope> current_scope;
|
||||
|
||||
Vector<Vector<FunctionNode::Parameter>&> function_parameters;
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ test("basic functionality", () => {
|
|||
});
|
||||
|
||||
// First two calls produce a ReferenceError, but the declarations should be hoisted
|
||||
test.skip("functions are hoisted across non-lexical scopes", () => {
|
||||
test("functions are hoisted across non-lexical scopes", () => {
|
||||
expect(scopedHoisted).toBeUndefined();
|
||||
expect(callScopedHoisted).toBeUndefined();
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue