diff --git a/src/LuauAST/impl/globals.ts b/src/LuauAST/impl/globals.ts index d9bd8e6..f915413 100644 --- a/src/LuauAST/impl/globals.ts +++ b/src/LuauAST/impl/globals.ts @@ -43,13 +43,19 @@ export const globals = { super: luau.id("super"), table: { clear: luau.property(TABLE_ID, "clear"), + clone: luau.property(TABLE_ID, "clone"), concat: luau.property(TABLE_ID, "concat"), create: luau.property(TABLE_ID, "create"), find: luau.property(TABLE_ID, "find"), + freeze: luau.property(TABLE_ID, "freeze"), insert: luau.property(TABLE_ID, "insert"), + isfrozen: luau.property(TABLE_ID, "isfrozen"), + maxn: luau.property(TABLE_ID, "maxn"), move: luau.property(TABLE_ID, "move"), + pack: luau.property(TABLE_ID, "pack"), remove: luau.property(TABLE_ID, "remove"), sort: luau.property(TABLE_ID, "sort"), + unpack: luau.property(TABLE_ID, "unpack"), }, utf8: { charpattern: luau.property(UTF8_ID, "charpattern"),