1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 00:27:35 +00:00

JSSpecCompiler: Parse "the *this* value" in expressions

This commit is contained in:
Dan Klishch 2024-01-21 00:28:28 -05:00 committed by Andrew Kaster
parent ddf26a768c
commit 3e6a07154b
4 changed files with 39 additions and 0 deletions

View file

@ -78,6 +78,7 @@ private:
TextParseErrorOr<Tree> parse_record_direct_list_initialization();
TextParseErrorOr<Vector<Tree>> parse_function_arguments();
TextParseErrorOr<Tree> parse_list_initialization();
TextParseErrorOr<Tree> parse_the_this_value();
TextParseErrorOr<Tree> parse_value();
TextParseErrorOr<Tree> parse_expression();
TextParseErrorOr<Tree> parse_condition();