-
Notifications
You must be signed in to change notification settings - Fork 0
Other modifiers
JonathanOrr edited this page Aug 25, 2023
·
7 revisions
| Modifiers |
readonly (field only) |
sealed (method only) |
static |
|---|---|---|---|
readonly |
❌ | ✔️ | |
sealed |
❌ | ✔️ | |
static |
✔️ | ✔️ |
As Lua does not have strict type casting, abstract, virtual, and override keywords are unnecessary. Since overriding is not implemented, sealed simply prevents the hiding of any inherited fields, properties, and methods.