overpy 9.7.4 → 9.7.5
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 +3 -2
- package/package.json +1 -1
package/overpy.js
CHANGED
|
@@ -70187,7 +70187,7 @@ OverPyCompiler.prototype.astToWs = function(content) {
|
|
|
70187
70187
|
} else if (this.replacementForEmptyString === "variable") {
|
|
70188
70188
|
content.args[i] = this.Ast("__globalVar__", [this.Ast("__emptyString__", [], [], "GlobalVariable")]);
|
|
70189
70189
|
} else {
|
|
70190
|
-
content.args[i] = this.Ast(".charAt", [this.getAstForEmptyArray(), this.
|
|
70190
|
+
content.args[i] = this.Ast(".charAt", [this.getAstForEmptyArray(), this.getAstForFalse()]);
|
|
70191
70191
|
}
|
|
70192
70192
|
}
|
|
70193
70193
|
}
|
|
@@ -70935,7 +70935,8 @@ rule "Disable inspector":
|
|
|
70935
70935
|
translatedStrings: compiler.translatedStrings,
|
|
70936
70936
|
writeToOutputFile: compiler.writeToOutputFile,
|
|
70937
70937
|
mainFileName: compiler.mainFileName,
|
|
70938
|
-
rootPath: compiler.rootPath
|
|
70938
|
+
rootPath: compiler.rootPath,
|
|
70939
|
+
importedFiles: compiler.importedFiles
|
|
70939
70940
|
};
|
|
70940
70941
|
}
|
|
70941
70942
|
OverPyCompiler.prototype.compileRules = function(astRules) {
|
package/package.json
CHANGED