mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-23 13:05:12 +00:00
LibJS: Add missing initializer for ParserState::m_current_scope_pusher
This commit is contained in:
parent
b00b461b31
commit
7de2a84cd4
Notes:
sideshowbarker
2024-07-18 02:56:01 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/7de2a84cd40
1 changed files with 1 additions and 1 deletions
|
@ -239,7 +239,7 @@ private:
|
|||
Lexer lexer;
|
||||
Token current_token;
|
||||
Vector<Error> errors;
|
||||
ScopePusher* current_scope_pusher;
|
||||
ScopePusher* current_scope_pusher { nullptr };
|
||||
|
||||
HashMap<StringView, Optional<Position>> labels_in_scope;
|
||||
bool strict_mode { false };
|
||||
|
|
Loading…
Add table
Reference in a new issue