mirror of
https://github.com/luau-lang/rfcs.git
synced 2025-04-05 02:50:59 +01:00
Add linting metatable field to design
This commit is contained in:
parent
6926e4ea02
commit
2d2e432381
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ type Identity = {
|
|||
}
|
||||
```
|
||||
|
||||
This could cause confusion with table properties named `metatable`. To combat this, a lint could be added which will warn upon setting table properties named `metatable`. To silence this lint, `["metatable"]` would need to be used instead.
|
||||
|
||||
## Alternatives
|
||||
|
||||
`type T = { metatable {} }` could be too similar to field syntax. An argument could be made that `type T = { metatable: {} }` is too similar to metatable syntax. We could change the keyword to be `@metatable`, similar to how it is currently expressed as when converting a type to a string. However, this introduces a sigil, which increases cognitive load and harms readability.
|
||||
|
|
Loading…
Add table
Reference in a new issue