overpy 9.7.4 → 9.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/overpy.js +5 -3
- package/package.json +1 -1
package/overpy.js
CHANGED
|
@@ -3613,7 +3613,8 @@ var mapKw = (
|
|
|
3613
3613
|
"skirmish",
|
|
3614
3614
|
"hybrid"
|
|
3615
3615
|
],
|
|
3616
|
-
"en-US": "Neon Junction"
|
|
3616
|
+
"en-US": "Neon Junction",
|
|
3617
|
+
"zh-CN": "\u9713\u8679\u67A2\u7EBD"
|
|
3617
3618
|
},
|
|
3618
3619
|
"nepal": {
|
|
3619
3620
|
"guid": "00000000138A",
|
|
@@ -70187,7 +70188,7 @@ OverPyCompiler.prototype.astToWs = function(content) {
|
|
|
70187
70188
|
} else if (this.replacementForEmptyString === "variable") {
|
|
70188
70189
|
content.args[i] = this.Ast("__globalVar__", [this.Ast("__emptyString__", [], [], "GlobalVariable")]);
|
|
70189
70190
|
} else {
|
|
70190
|
-
content.args[i] = this.Ast(".charAt", [this.getAstForEmptyArray(), this.
|
|
70191
|
+
content.args[i] = this.Ast(".charAt", [this.getAstForEmptyArray(), this.getAstForFalse()]);
|
|
70191
70192
|
}
|
|
70192
70193
|
}
|
|
70193
70194
|
}
|
|
@@ -70935,7 +70936,8 @@ rule "Disable inspector":
|
|
|
70935
70936
|
translatedStrings: compiler.translatedStrings,
|
|
70936
70937
|
writeToOutputFile: compiler.writeToOutputFile,
|
|
70937
70938
|
mainFileName: compiler.mainFileName,
|
|
70938
|
-
rootPath: compiler.rootPath
|
|
70939
|
+
rootPath: compiler.rootPath,
|
|
70940
|
+
importedFiles: compiler.importedFiles
|
|
70939
70941
|
};
|
|
70940
70942
|
}
|
|
70941
70943
|
OverPyCompiler.prototype.compileRules = function(astRules) {
|
package/package.json
CHANGED