mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 19:11:00 +01:00
Update syntax-if-statements-initializers.md
This commit is contained in:
parent
33a5933eb9
commit
927dfed81f
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ The reduced scope pollution improves register space in extreme cases (or auto-ge
|
|||
|
||||
# Design
|
||||
|
||||
If statements with initializers must match (following the Luau grammar) `'if' 'local' bindinglist ['=' explist] 'then'` and `'local' bindinglist ['=' explist] where exp 'then'` syntax. Parenthesis are also allowed around the initializer for consistency with other expressions. The variables declared by the initializer are only available to the block of that condition and will be undefined to the `elseif` conditions and blocks as well as the `else` block; any code after the if statement won't have the variables defined either.
|
||||
If statements with initializers must match (following the Luau grammar) `'if' 'local' bindinglist ['=' explist] 'then'` and `'local' bindinglist ['=' explist] where exp 'then'` syntax. The variables declared by the initializer are only available to the block of that condition and will be undefined to the `elseif` conditions and blocks as well as the `else` block; any code after the if statement won't have the variables defined either.
|
||||
|
||||
In the former case, the value of the first declared variable will be checked.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue