mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-04 18:41:00 +01:00
Update docs/syntax-if-statements-initializers.md
Co-authored-by: Alexander McCord <11488393+alexmccord@users.noreply.github.com>
This commit is contained in:
parent
b4e09afb9e
commit
548d4c8ba9
1 changed files with 0 additions and 4 deletions
|
@ -62,10 +62,6 @@ If statements with initializers must match the below grammar. The variables decl
|
|||
+ 'if' cond 'then' block {'elseif' cond 'then' block} ['else' block] 'end' |
|
||||
'for' binding '=' exp ',' exp [',' exp] 'do' block 'end' |
|
||||
...
|
||||
|
||||
- ifelseexp = 'if' exp 'then' exp {'elseif' exp 'then' exp} 'else' exp
|
||||
+ ifelseexp = 'if' cond 'then' exp {'elseif' cond 'then' exp} 'else' exp
|
||||
|
||||
+ cond = 'local' binding '=' exp ['where' exp] |
|
||||
+ 'local' bindinglist '=' explist 'where' exp |
|
||||
+ exp
|
||||
|
|
Loading…
Add table
Reference in a new issue