Skip to content

Commit

Permalink
Automated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
github-ci committed May 21, 2024
1 parent 1c0bfbb commit 97bc1fb
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 30 deletions.
59 changes: 29 additions & 30 deletions TimedPetriNetEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ if (ENVIRONMENT_IS_NODE) {

// --pre-jses are emitted after the Module integration code, so that they can
// refer to Module (if they choose; they can also define Module)
// include: /tmp/tmpmnu60bcf.js
// include: /tmp/tmprgl8alm5.js

if (!Module.expectedDataFileDownloads) {
Module.expectedDataFileDownloads = 0;
Expand Down Expand Up @@ -221,21 +221,21 @@ Module['FS_createPath']("/", "examples", true, true);

})();

// end include: /tmp/tmpmnu60bcf.js
// include: /tmp/tmp8b8y91y9.js
// end include: /tmp/tmprgl8alm5.js
// include: /tmp/tmpa649qi4u.js

// All the pre-js content up to here must remain later on, we need to run
// it.
if (Module['$ww'] || (typeof ENVIRONMENT_IS_PTHREAD != 'undefined' && ENVIRONMENT_IS_PTHREAD)) Module['preRun'] = [];
var necessaryPreJSTasks = Module['preRun'].slice();
// end include: /tmp/tmp8b8y91y9.js
// include: /tmp/tmp82xina2f.js
// end include: /tmp/tmpa649qi4u.js
// include: /tmp/tmp24mg1k1l.js

if (!Module['preRun']) throw 'Module.preRun should exist because file support used it; did a pre-js delete it?';
necessaryPreJSTasks.forEach(function(task) {
if (Module['preRun'].indexOf(task) < 0) throw 'All preRun tasks that exist before user pre-js code should remain after; did you replace Module or modify Module.preRun?';
});
// end include: /tmp/tmp82xina2f.js
// end include: /tmp/tmp24mg1k1l.js


// Sometimes an existing Module object exists with properties
Expand Down Expand Up @@ -1669,18 +1669,17 @@ function GetWindowInnerHeight() { return window.innerHeight; }
var fd = process.stdin.fd;

try {
bytesRead = fs.readSync(fd, buf);
bytesRead = fs.readSync(fd, buf, 0, BUFSIZE);
} catch(e) {
// Cross-platform differences: on Windows, reading EOF throws an exception, but on other OSes,
// reading EOF returns 0. Uniformize behavior by treating the EOF exception to return 0.
// Cross-platform differences: on Windows, reading EOF throws an
// exception, but on other OSes, reading EOF returns 0. Uniformize
// behavior by treating the EOF exception to return 0.
if (e.toString().includes('EOF')) bytesRead = 0;
else throw e;
}

if (bytesRead > 0) {
result = buf.slice(0, bytesRead).toString('utf-8');
} else {
result = null;
}
} else
if (typeof window != 'undefined' &&
Expand All @@ -1690,13 +1689,8 @@ function GetWindowInnerHeight() { return window.innerHeight; }
if (result !== null) {
result += '\n';
}
} else if (typeof readline == 'function') {
// Command line.
result = readline();
if (result !== null) {
result += '\n';
}
}
} else
{}
if (!result) {
return null;
}
Expand Down Expand Up @@ -3373,8 +3367,8 @@ function GetWindowInnerHeight() { return window.innerHeight; }
throw new FS.ErrnoError(44);
}
flags = typeof flags == 'string' ? FS_modeStringToFlags(flags) : flags;
mode = typeof mode == 'undefined' ? 438 /* 0666 */ : mode;
if ((flags & 64)) {
mode = typeof mode == 'undefined' ? 438 /* 0666 */ : mode;
mode = (mode & 4095) | 32768;
} else {
mode = 0;
Expand Down Expand Up @@ -10315,10 +10309,16 @@ function GetWindowInnerHeight() { return window.innerHeight; }
},
};

var FS_createPath = FS.createPath;



var FS_unlink = (path) => FS.unlink(path);

var FS_createLazyFile = FS.createLazyFile;

var FS_createDevice = FS.createDevice;

FS.createPreloadedFile = FS_createPreloadedFile;
FS.staticInit();Module["FS_createPath"] = FS.createPath;Module["FS_createDataFile"] = FS.createDataFile;Module["FS_createPreloadedFile"] = FS.createPreloadedFile;Module["FS_unlink"] = FS.unlink;Module["FS_createLazyFile"] = FS.createLazyFile;Module["FS_createDevice"] = FS.createDevice;;
var GLctx;;
Expand Down Expand Up @@ -10987,20 +10987,19 @@ var _asyncify_start_unwind = createExportWrapper('asyncify_start_unwind', 1);
var _asyncify_stop_unwind = createExportWrapper('asyncify_stop_unwind', 0);
var _asyncify_start_rewind = createExportWrapper('asyncify_start_rewind', 1);
var _asyncify_stop_rewind = createExportWrapper('asyncify_stop_rewind', 0);
var ___start_em_js = Module['___start_em_js'] = 176655;
var ___stop_em_js = Module['___stop_em_js'] = 176728;


// include: postamble.js
// === Auto-generated postamble setup entry stuff ===

Module['addRunDependency'] = addRunDependency;
Module['removeRunDependency'] = removeRunDependency;
Module['FS_createPath'] = FS.createPath;
Module['FS_createLazyFile'] = FS.createLazyFile;
Module['FS_createDevice'] = FS.createDevice;
Module['FS_createPreloadedFile'] = FS.createPreloadedFile;
Module['FS_createDataFile'] = FS.createDataFile;
Module['FS_unlink'] = FS.unlink;
Module['FS_createPreloadedFile'] = FS_createPreloadedFile;
Module['FS_unlink'] = FS_unlink;
Module['FS_createPath'] = FS_createPath;
Module['FS_createDevice'] = FS_createDevice;
Module['FS_createDataFile'] = FS_createDataFile;
Module['FS_createLazyFile'] = FS_createLazyFile;
var missingLibrarySymbols = [
'writeI53ToI64Clamped',
'writeI53ToI64Signaling',
Expand Down Expand Up @@ -11123,9 +11122,6 @@ var unexportedSymbols = [
'addOnPreMain',
'addOnExit',
'addOnPostRun',
'FS_createFolder',
'FS_createLink',
'FS_readFile',
'out',
'err',
'callMain',
Expand Down Expand Up @@ -11239,6 +11235,7 @@ var unexportedSymbols = [
'FS_getMode',
'FS_stdin_getChar_buffer',
'FS_stdin_getChar',
'FS_readFile',
'FS',
'MEMFS',
'TTY',
Expand Down Expand Up @@ -11278,6 +11275,8 @@ var unexportedSymbols = [
'GLFW',
'allocateUTF8',
'allocateUTF8OnStack',
'print',
'printErr',
];
unexportedSymbols.forEach(unexportedRuntimeSymbol);

Expand Down
Binary file modified TimedPetriNetEditor.wasm
Binary file not shown.

0 comments on commit 97bc1fb

Please sign in to comment.