diff --git a/bins/luau-lsp/init.luau b/bins/luau-lsp/init.luau index 8ab587d..145d793 100644 --- a/bins/luau-lsp/init.luau +++ b/bins/luau-lsp/init.luau @@ -1,7 +1,7 @@ --- TODO: Make use of returned exit code. Currently this script will get --- required by a pesde generated linker script, and due to a lune bug, --- exiting from within a required module causes a non-winding panic - --- See https://github.com/lune-org/lune/pull/247 for more details - -require("./lune_packages/core")("JohnnyMorganz/luau-lsp", _G.PESDE_ROOT) +-- TODO: Make use of returned exit code. Currently this script will get +-- required by a pesde generated linker script, and due to a lune bug, +-- exiting from within a required module causes a non-winding panic + +-- See https://github.com/lune-org/lune/pull/247 for more details + +require("./lune_packages/core")("JohnnyMorganz/luau-lsp", _G.PESDE_ROOT) diff --git a/bins/stylua/init.luau b/bins/stylua/init.luau index 9e11303..9f42a1a 100644 --- a/bins/stylua/init.luau +++ b/bins/stylua/init.luau @@ -1,7 +1,7 @@ --- TODO: Make use of returned exit code. Currently this script will get --- required by a pesde generated linker script, and due to a lune bug, --- exiting from within a required module causes a non-winding panic - --- See https://github.com/lune-org/lune/pull/247 for more details - -require("./lune_packages/core")("JohnnyMorganz/stylua", _G.PESDE_ROOT) +-- TODO: Make use of returned exit code. Currently this script will get +-- required by a pesde generated linker script, and due to a lune bug, +-- exiting from within a required module causes a non-winding panic + +-- See https://github.com/lune-org/lune/pull/247 for more details + +require("./lune_packages/core")("JohnnyMorganz/stylua", _G.PESDE_ROOT) diff --git a/toolchainlib/src/utils/eq.luau b/toolchainlib/src/utils/eq.luau index c45a86f..e963f77 100644 --- a/toolchainlib/src/utils/eq.luau +++ b/toolchainlib/src/utils/eq.luau @@ -1,28 +1,28 @@ -local function eq(this: any, that: any): boolean - if type(this) ~= type(that) then - return false - end - - if type(this) == "table" then - local visited = {} - - for key, value in pairs(this) do - if not eq(value, that[key]) then - return false - end - visited[key] = true - end - - for key, _ in pairs(that) do - if not visited[key] then - return false - end - end - - return true - end - - return this == that -end - -return eq +local function eq(this: any, that: any): boolean + if type(this) ~= type(that) then + return false + end + + if type(this) == "table" then + local visited = {} + + for key, value in pairs(this) do + if not eq(value, that[key]) then + return false + end + visited[key] = true + end + + for key, _ in pairs(that) do + if not visited[key] then + return false + end + end + + return true + end + + return this == that +end + +return eq