mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
LibJS: Parse "with" statements :^)
This commit is contained in:
parent
98f2da9834
commit
d617120499
Notes:
sideshowbarker
2024-07-19 01:13:07 +09:00
Author: https://github.com/awesomekling
Commit: d617120499
4 changed files with 55 additions and 0 deletions
|
@ -79,6 +79,7 @@ public:
|
|||
NonnullRefPtr<ContinueStatement> parse_continue_statement();
|
||||
NonnullRefPtr<DoWhileStatement> parse_do_while_statement();
|
||||
NonnullRefPtr<WhileStatement> parse_while_statement();
|
||||
NonnullRefPtr<WithStatement> parse_with_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, Vector<TokenType> forbidden = {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue