mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-06 11:30:56 +01:00
Update syntax-if-statements-initializers.md
This commit is contained in:
parent
927dfed81f
commit
32fd23e416
1 changed files with 20 additions and 0 deletions
|
@ -67,6 +67,26 @@ end
|
||||||
|
|
||||||
`Output: Hello World, from Luau!`
|
`Output: Hello World, from Luau!`
|
||||||
|
|
||||||
|
If statement initializers are also allowed in `elseif` conditions.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
```lua
|
||||||
|
local a = false
|
||||||
|
local function foo()
|
||||||
|
local b = a
|
||||||
|
a = true
|
||||||
|
return b
|
||||||
|
end
|
||||||
|
|
||||||
|
if local a = foo() then
|
||||||
|
elseif local b = foo() then
|
||||||
|
print(b)
|
||||||
|
end
|
||||||
|
```
|
||||||
|
|
||||||
|
`Output: true`
|
||||||
|
|
||||||
# Drawbacks
|
# Drawbacks
|
||||||
|
|
||||||
Parser recovery may be more fragile due to the `local` keyword.
|
Parser recovery may be more fragile due to the `local` keyword.
|
||||||
|
|
Loading…
Add table
Reference in a new issue