mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Update behavior-string-indexing.md
Only one of the two variants actually works
This commit is contained in:
parent
3961b05ed3
commit
dea941a9de
1 changed files with 1 additions and 10 deletions
|
@ -37,7 +37,6 @@ aren't present.
|
|||
Instead, we're going to use a chain of two metatables like this (pseudocode):
|
||||
|
||||
```lua
|
||||
-- variant 1
|
||||
MT1 = { __index = MT2 }
|
||||
MT2 = { ...string fields } with metatable MT3
|
||||
MT3 = { __index = noindex }
|
||||
|
@ -50,21 +49,13 @@ second-level metatable lookup which will call `noindex` function, producing an e
|
|||
As a result, some programs may change behavior and start generating errors when previously they produced `nil`. The premise of this proposal is that code like this likely
|
||||
is incorrect to begin with, and the error is just being hidden.
|
||||
|
||||
Note that the pseudo-code above is a sketch that is easy to understand, but in practice there's two alternative formulations where one of the tables uses itself as a metatable:
|
||||
Note that the pseudo-code above is a sketch that is easy to understand, but in practice there's an alternative formulations where one of the tables uses itself as a metatable:
|
||||
|
||||
```lua
|
||||
-- potentially more efficient variant 2
|
||||
MT1 = { ... string fields, __index = MT2 } with metatable MT1
|
||||
MT2 = { __index = noindex }
|
||||
|
||||
-- potentially more efficient variant 3
|
||||
MT1 = { __index = MT2 }
|
||||
MT2 = { ... string fields, __index = noindex } with metatable MT2
|
||||
```
|
||||
|
||||
It is likely that variant 2 is the most efficient one because it results in just a single table (MT1) being accessed on fast paths, but we will use whichever variant
|
||||
ends up being faster in practice.
|
||||
|
||||
## Drawbacks
|
||||
|
||||
This change technically breaks backwards compatibility, because it renders technically valid programs invalid. For example, this code works as long as the input is a table
|
||||
|
|
Loading…
Add table
Reference in a new issue