mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:07:45 +00:00
LibJS: Add missing initializer for ParserState::m_current_scope_pusher
This commit is contained in:
parent
b00b461b31
commit
7de2a84cd4
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ private:
|
||||||
Lexer lexer;
|
Lexer lexer;
|
||||||
Token current_token;
|
Token current_token;
|
||||||
Vector<Error> errors;
|
Vector<Error> errors;
|
||||||
ScopePusher* current_scope_pusher;
|
ScopePusher* current_scope_pusher { nullptr };
|
||||||
|
|
||||||
HashMap<StringView, Optional<Position>> labels_in_scope;
|
HashMap<StringView, Optional<Position>> labels_in_scope;
|
||||||
bool strict_mode { false };
|
bool strict_mode { false };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue