mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
Try to be less confusing
This commit is contained in:
parent
3955bcb2e3
commit
f6e87737e7
1 changed files with 3 additions and 3 deletions
|
@ -77,9 +77,9 @@ Failing the nil-safety check early would make the entire expression nil, for ins
|
|||
The list of valid operators to follow the safe navigation operator would be:
|
||||
|
||||
```lua
|
||||
dog?.name == if dog == nil then nil else dog.name
|
||||
dog?.getName() == if dog == nil then nil else dog.getName()
|
||||
dog?:getName(args) == if dog == nil then nil else dog:getName(args)
|
||||
dog?.name --[[ is the same as ]] if dog == nil then nil else dog.name
|
||||
dog?.getName() --[[ is the same as ]] if dog == nil then nil else dog.getName()
|
||||
dog?:getName(args) --[[ is the same as ]] if dog == nil then nil else dog:getName(args)
|
||||
```
|
||||
|
||||
When using safe navigation to call a function, the short circuiting will prevent the arguments from being evaluated in the case of nil.
|
||||
|
|
Loading…
Add table
Reference in a new issue