From abefaf47fc1d92367178967d351bcc577040a669 Mon Sep 17 00:00:00 2001 From: Artemy Date: Wed, 3 Jan 2024 14:31:57 +0300 Subject: [PATCH] Update readme.md --- src/specification/parser/readme.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/specification/parser/readme.md b/src/specification/parser/readme.md index 07cf361..3bc385c 100644 --- a/src/specification/parser/readme.md +++ b/src/specification/parser/readme.md @@ -8,6 +8,7 @@ | ------------------------------------------------ | ------------- | -------------- | ---- | | Calls, Identifiers, Literals | Left to Right | call | ✅ | | Members | Left to Right | dot | ✅ | +| block expr | Right to Left | block_expr | ✅ | | new | Right to Left | new_expr | ✅ | | delete | Right to Left | delete_expr | ✅ | | await | Right to Left | await_expr | ✅ | @@ -34,6 +35,7 @@ | Variable declaration | var_decl | Let | ✅ | | Async function declaration | fn_decl | Async | ✅ | | Function declaration | fn_decl | Function | ✅ | +| Scope declaration | scope_decl | Scope | ✅ | | Return statement | return_stmt | Return | ✅ | | Yield statement | yield_stmt | Yield | ✅ | | Break statement | break_stmt | Break | ✅ |