mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
LibJS: Add support for "continue" inside "for" statements :^)
This commit is contained in:
parent
e3b92caa6d
commit
9ebd066ac8
8 changed files with 65 additions and 1 deletions
|
@ -58,6 +58,7 @@ public:
|
|||
NonnullRefPtr<SwitchStatement> parse_switch_statement();
|
||||
NonnullRefPtr<SwitchCase> parse_switch_case();
|
||||
NonnullRefPtr<BreakStatement> parse_break_statement();
|
||||
NonnullRefPtr<ContinueStatement> parse_continue_statement();
|
||||
NonnullRefPtr<DoWhileStatement> parse_do_while_statement();
|
||||
NonnullRefPtr<ConditionalExpression> parse_conditional_expression(NonnullRefPtr<Expression> test);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue