mirror of
https://github.com/SymboScript/Book.git
synced 2024-11-23 21:56:23 +03:00
Update readme.md
This commit is contained in:
parent
56919389a7
commit
1678d316a0
1 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@
|
||||||
| Statement | Parser fn name | Trigger token | Impl |
|
| Statement | Parser fn name | Trigger token | Impl |
|
||||||
| -------------------------- | -------------- | ------------- | ---- |
|
| -------------------------- | -------------- | ------------- | ---- |
|
||||||
| Variable declaration | var_decl | Let | ✅ |
|
| Variable declaration | var_decl | Let | ✅ |
|
||||||
| Async function declaration | async_fn_decl | Async | ❌ |
|
| Async function declaration | fn_decl | Async | ✅ |
|
||||||
| Function declaration | fn_decl | Function | ✅ |
|
| Function declaration | fn_decl | Function | ✅ |
|
||||||
| Return statement | return_stmt | Return | ✅ |
|
| Return statement | return_stmt | Return | ✅ |
|
||||||
| Yield statement | yield_stmt | Yield | ✅ |
|
| Yield statement | yield_stmt | Yield | ✅ |
|
||||||
|
@ -42,6 +42,6 @@
|
||||||
| While statement | while_stmt | While | ✅ |
|
| While statement | while_stmt | While | ✅ |
|
||||||
| For statement | for_stmt | For | ✅ |
|
| For statement | for_stmt | For | ✅ |
|
||||||
| Loop statement | loop_stmt | Loop | ✅ |
|
| Loop statement | loop_stmt | Loop | ✅ |
|
||||||
| Try statement | try_stmt | Try | ❌ |
|
| Try statement | try_stmt | Try | ✅ |
|
||||||
| Throw statement | throw_stmt | Throw | ❌ |
|
| Throw statement | throw_stmt | Throw | ✅ |
|
||||||
| Expression statement | expr_stmt | Other | ✅ |
|
| Expression statement | expr_stmt | Other | ✅ |
|
||||||
|
|
Loading…
Add table
Reference in a new issue