Added indexer methods for Class types

This commit is contained in:
Junseo Yoo 2024-07-01 12:03:43 -07:00
parent 1ad250d1c4
commit db7a65b0da

View file

@ -184,6 +184,8 @@ All attributes of newly created typelib are initialized with empty tables / arra
| `getprops()` | `table` | returns the runtime representation of table of class's properties | | `getprops()` | `table` | returns the runtime representation of table of class's properties |
| `getparent()` | `typelib \| nil` | returns the runtime representation of self's parent class if it exists, else nil | | `getparent()` | `typelib \| nil` | returns the runtime representation of self's parent class if it exists, else nil |
| `getmetatable()` | `typelib \| nil` | returns the runtime representation of self's `Metatable` if it exists, else nil | | `getmetatable()` | `typelib \| nil` | returns the runtime representation of self's `Metatable` if it exists, else nil |
| `getindextype()` | `typelib` | returns self's index type |
| `getindexresulttype()` | `typelib` | returns self's index result type |
</details> </details>