Release 1.1.5

This commit is contained in:
Omelette 蛋卷
2024-02-07 00:43:54 -05:00
parent 141042ee44
commit f217aae6db
3 changed files with 7 additions and 2 deletions

View File

@@ -61,7 +61,7 @@ async function runLua(lua: string, outputChannel: vscode.OutputChannel, filename
// Replace JSON syntax with Lua syntax
luaString = luaString.replace(/null/g, 'nil'); // Replace null with nil
luaString = luaString.replace(/"([^"]+)":/g, '["$1"] ='); // Replace "key": with ["key"] =
luaString = luaString.replace(/"_([0-9]+)":/g, '[$1] ='); // Replace "_n": with [n] =
luaString = luaString.replace(/\["_([0-9]+)"\]\s*=/g, '[$1] ='); // Replace ["_n"] = with [n] =
luaString = luaString.replace(/\[\]/g, '{}'); // Replace [] with {}
luaString = luaString.replace(/\[\n/g, '{\n'); // Replace [ followed by a line break with { followed by a line break
luaString = luaString.replace(/]\n/g, '}\n'); // Replace ] followed by a line break with } followed by a line break