mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
LibJS: Implement (no-op) debugger statement
This commit is contained in:
parent
ea839861e5
commit
43c1fa9965
9 changed files with 41 additions and 1 deletions
|
@ -61,6 +61,7 @@ public:
|
|||
NonnullRefPtr<ContinueStatement> parse_continue_statement();
|
||||
NonnullRefPtr<DoWhileStatement> parse_do_while_statement();
|
||||
NonnullRefPtr<WhileStatement> parse_while_statement();
|
||||
NonnullRefPtr<DebuggerStatement> parse_debugger_statement();
|
||||
NonnullRefPtr<ConditionalExpression> parse_conditional_expression(NonnullRefPtr<Expression> test);
|
||||
|
||||
NonnullRefPtr<Expression> parse_expression(int min_precedence, Associativity associate = Associativity::Right);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue