efront 4.33.2 → 4.33.3
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/coms/compile/common.js
CHANGED
|
@@ -933,8 +933,8 @@ var createScoped = function (parsed, wash) {
|
|
|
933
933
|
mergeTo(_used, used);
|
|
934
934
|
if (scoped.length) _scoped.push(scoped);
|
|
935
935
|
}
|
|
936
|
-
if (isArraw)
|
|
937
|
-
|
|
936
|
+
if (isArraw) scoped.isArraw = isArraw;
|
|
937
|
+
if (isArraw || vars !== lets) {
|
|
938
938
|
if (!thisscope.insett && used.this) thisscope.insett = true;
|
|
939
939
|
if (!argscope.inseta && used.arguments) argscope.inseta = true;
|
|
940
940
|
}
|
package/coms/third-party/lzma.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
var URL = this.URL;
|
|
2
2
|
var WebAssembly = this.WebAssembly;
|
|
3
3
|
var Module = typeof Module != "undefined" ? Module : {};
|
|
4
|
-
var quit_ = (status, toThrow) => { throw toThrow };
|
|
5
4
|
var scriptDirectory = "";
|
|
6
5
|
function locateFile(path) {
|
|
7
6
|
if (Module["locateFile"]) { return Module["locateFile"](path, scriptDirectory) }
|
|
@@ -20,8 +19,7 @@ readAsync = async (filename, binary = true) => {
|
|
|
20
19
|
var ret = fs.readFileSync(filename, binary ? undefined : "utf8");
|
|
21
20
|
return ret
|
|
22
21
|
};
|
|
23
|
-
|
|
24
|
-
quit_ = (status, toThrow) => {
|
|
22
|
+
var quit_ = (status, toThrow) => {
|
|
25
23
|
process.exitCode = status;
|
|
26
24
|
throw toThrow
|
|
27
25
|
}
|
|
@@ -282,3 +280,4 @@ preInit();
|
|
|
282
280
|
run();
|
|
283
281
|
|
|
284
282
|
|
|
283
|
+
return Module;
|