This commit is contained in:
Frank
2024-03-24 22:51:11 +01:00
parent 801475e146
commit 2205100942
2 changed files with 206 additions and 165 deletions

View File

@@ -1157,6 +1157,20 @@ function BASE:_Serialize(Arguments)
return text
end
--- (Internal) Serialize arguments
-- @param #BASE self
-- @param #table Arguments
-- @return #string Text
function BASE:_Serialize(Arguments)
local text=UTILS.BasicSerialize(Arguments)
-- local text = UTILS.PrintTableToLog({Arguments}, 0, true)
-- text = string.gsub(text,"\n","")
-- text = string.gsub(text,"%(%(","%(")
-- text = string.gsub(text,"%)%)","%)")
-- text = string.gsub(text,"(%s+)","")
return text
end
--- Trace a function call. This function is private.
-- @param #BASE self
-- @param Arguments A #table or any field.