efront 4.33.1 → 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,6 +1,6 @@
|
|
|
1
1
|
var URL = this.URL;
|
|
2
|
+
var WebAssembly = this.WebAssembly;
|
|
2
3
|
var Module = typeof Module != "undefined" ? Module : {};
|
|
3
|
-
var quit_ = (status, toThrow) => { throw toThrow };
|
|
4
4
|
var scriptDirectory = "";
|
|
5
5
|
function locateFile(path) {
|
|
6
6
|
if (Module["locateFile"]) { return Module["locateFile"](path, scriptDirectory) }
|
|
@@ -19,8 +19,7 @@ readAsync = async (filename, binary = true) => {
|
|
|
19
19
|
var ret = fs.readFileSync(filename, binary ? undefined : "utf8");
|
|
20
20
|
return ret
|
|
21
21
|
};
|
|
22
|
-
|
|
23
|
-
quit_ = (status, toThrow) => {
|
|
22
|
+
var quit_ = (status, toThrow) => {
|
|
24
23
|
process.exitCode = status;
|
|
25
24
|
throw toThrow
|
|
26
25
|
}
|
|
@@ -281,3 +280,4 @@ preInit();
|
|
|
281
280
|
run();
|
|
282
281
|
|
|
283
282
|
|
|
283
|
+
return Module;
|