summaryrefslogtreecommitdiff
path: root/meta/3rd/Defold/library/json.lua
diff options
context:
space:
mode:
authorfesily <fesil@foxmail.com>2024-01-10 11:03:21 +0800
committerGitHub <noreply@github.com>2024-01-10 11:03:21 +0800
commit1e7bb72ad3ff2b75a1c55ee4bc53004cb7fe30f7 (patch)
treedd94cf09b9e3a675a73a9f1d41248d1538165997 /meta/3rd/Defold/library/json.lua
parentbb6e172d6166190bd4edd3bb56230a7d60ebcb93 (diff)
parent37779f9b2493e51e59e1e4366bf7dcb8350e69bd (diff)
downloadlua-language-server-1e7bb72ad3ff2b75a1c55ee4bc53004cb7fe30f7.zip
Merge branch 'LuaLS:master' into plugin-add-OnTransformAst
Diffstat (limited to 'meta/3rd/Defold/library/json.lua')
m---------meta/3rd/Defold0
-rw-r--r--meta/3rd/Defold/library/json.lua20
2 files changed, 0 insertions, 20 deletions
diff --git a/meta/3rd/Defold b/meta/3rd/Defold
new file mode 160000
+Subproject 05379b40fb3084d82f7270475e42da8d521c4da
diff --git a/meta/3rd/Defold/library/json.lua b/meta/3rd/Defold/library/json.lua
deleted file mode 100644
index 2421d95e..00000000
--- a/meta/3rd/Defold/library/json.lua
+++ /dev/null
@@ -1,20 +0,0 @@
----JSON API documentation
----Manipulation of JSON data strings.
----@class json
-json = {}
----Decode a string of JSON data into a Lua table.
----A Lua error is raised for syntax errors.
----@param json string # json data
----@return table # decoded json
-function json.decode(json) end
-
----Encode a lua table to a JSON string.
----A Lua error is raised for syntax errors.
----@param tbl table # lua table to encode
----@return string # encoded json
-function json.encode(tbl) end
-
-
-
-
-return json \ No newline at end of file