Update syntax-if-statements-initializers.md

This commit is contained in:
James 2024-02-15 18:11:15 +00:00 committed by GitHub
parent 33a5933eb9
commit 927dfed81f
Signed by: DevComp
GPG key ID: B5690EEEBB952194

View file

@ -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.