Skip to content

Commit

Permalink
0.624
Browse files Browse the repository at this point in the history
  • Loading branch information
RealEthanPlayzDev committed May 9, 2024
1 parent f3ed6fa commit a4a01b5
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion luau
Submodule luau updated 109 files
16 changes: 8 additions & 8 deletions snippets/Compiler.luau
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
--// LuauCeption - Compiler variant
--// Luau 0.621 (9c2146288d78e8beacefe692ae1149fec066440e)
--// Luau 0.624 (8a64cb8b73996bd69c2734c607acd4b7d092358a)

local STUB_WARN = true

local cfns = {
["luau_compile"] = FUNC_LIST[241],
["set_flag"] = FUNC_LIST[534],
["set_all_flags"] = FUNC_LIST[541],
["reset_flags"] = FUNC_LIST[543],
["strlen"] = FUNC_LIST[504],
["malloc"] = FUNC_LIST[513],
["free"] = FUNC_LIST[515],
["luau_compile"] = FUNC_LIST[264],
["set_flag"] = FUNC_LIST[557],
["set_all_flags"] = FUNC_LIST[564],
["reset_flags"] = FUNC_LIST[566],
["strlen"] = FUNC_LIST[527],
["malloc"] = FUNC_LIST[536],
["free"] = FUNC_LIST[538],
}

--// __cxa_throw
Expand Down
2 changes: 1 addition & 1 deletion snippets/Full.luau
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--// LuauCeption - Full variant
--// Luau 0.621 (9c2146288d78e8beacefe692ae1149fec066440e)
--// Luau 0.624 (8a64cb8b73996bd69c2734c607acd4b7d092358a)

local STUB_WARN = true

Expand Down
18 changes: 9 additions & 9 deletions snippets/VM.luau
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
--// LuauCeption - VM variant
--// Luau 0.621 (9c2146288d78e8beacefe692ae1149fec066440e)
--// Luau 0.624 (8a64cb8b73996bd69c2734c607acd4b7d092358a)

local STUB_WARN = true

local cfns = {
["luaL_newstate"] = FUNC_LIST[313],
["lua_close"] = FUNC_LIST[380],
["set_flag"] = FUNC_LIST[647],
["set_all_flags"] = FUNC_LIST[655],
["reset_flags"] = FUNC_LIST[657],
["strlen"] = FUNC_LIST[612],
["set_flag"] = FUNC_LIST[648],
["set_all_flags"] = FUNC_LIST[656],
["reset_flags"] = FUNC_LIST[658],
["strlen"] = FUNC_LIST[613],
["lua_checkstack"] = FUNC_LIST[84],
["lua_rawcheckstack"] = FUNC_LIST[85],
["lua_xmove"] = FUNC_LIST[86],
Expand Down Expand Up @@ -168,18 +168,18 @@ local cfns = {
["luaL_openlibs"] = FUNC_LIST[310],
["luaL_sandbox"] = FUNC_LIST[311],
["luaL_sandboxthread"] = FUNC_LIST[312],
["malloc"] = FUNC_LIST[617],
["free"] = FUNC_LIST[619],
["malloc"] = FUNC_LIST[618],
["free"] = FUNC_LIST[620],
["lua_clock"] = FUNC_LIST[371],
["lua_newstate"] = FUNC_LIST[377],
["lua_resetthread"] = FUNC_LIST[375],
["luaopen_table"] = FUNC_LIST[433],
["luaopen_os"] = FUNC_LIST[366],
["luaopen_string"] = FUNC_LIST[386],
["luaopen_math"] = FUNC_LIST[315],
["luaopen_utf8"] = FUNC_LIST[462],
["luaopen_utf8"] = FUNC_LIST[463],
["lua_isthreadreset"] = FUNC_LIST[376],
["luau_load"] = FUNC_LIST[554],
["luau_load"] = FUNC_LIST[555],
}

local NOW_TIME = os.time() * 1000
Expand Down

0 comments on commit a4a01b5

Please sign in to comment.