added support for __newindex

This commit is contained in:
2020-11-24 15:16:37 -06:00
parent d2093098a4
commit bb11b3b309
4 changed files with 29 additions and 4 deletions

View File

@@ -15,7 +15,8 @@ typedef struct CCallFrame {
typedef enum IStringEnum {
ISTRING_INIT, // __init
ISTRING_EQUAL, // __equal
ISTRING_INDEX,
ISTRING_INDEX, // __index
ISTRING_NEWINDEX, // __newindex
ISTRING_MAX
} IStringEnum;