mirror of
https://github.com/pesde-pkg/tooling.git
synced 2025-04-03 18:30:56 +01:00
style: apply formatting to all files
This commit is contained in:
parent
ca881272be
commit
21c4a0b9cf
3 changed files with 42 additions and 42 deletions
|
@ -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)
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue