aboutsummaryrefslogtreecommitdiff
path: root/src/postamble.js
AgeCommit message (Collapse)Author
2014-06-17support argv[0] containing the script node is running; fixes #2431Alon Zakai
2014-03-06show logging about preload/pre-main time even without a mainAlon Zakai
2014-03-01mention ASSERTIONS in abort() callsAlon Zakai
2014-02-21strict fix: Don't define functions within conditionals or try blocks.Bruce Mitchener
2014-02-10NO_EXIT_RUNTIME option, to set Module.noExitRuntime during compilationAlon Zakai
2014-01-14fix double start bug #1992 in browser as wellAlon Zakai
2014-01-09prevent calling run more than once; fixes #1992Alon Zakai
2013-10-22remove --pre-run option in file packager, handle all that automaticallyAlon Zakai
2013-10-12demangle stacks in abort(), using new stackTrace utilityAlon Zakai
2013-10-09print call stack of errors, when there is oneAlon Zakai
2013-09-18handle memory initializer when there are deps added during preRunAlon Zakai
2013-09-13refactor memory initializer code to use run dependenciesfailureAlon Zakai
2013-09-13refactor code to handle when run dependencies reach 0Alon Zakai
2013-09-09Merge pull request #1578 from inolen/browser_exceptionAlon Zakai
gracefully handle ExitStatus exception in async main loops
2013-09-08proxy input eventsAlon Zakai
2013-09-01gracefully handle ExitStatus exception in async main loopsAnthony Pesch
2013-08-19show preload time only on webAlon Zakai
2013-08-19emit preload timingAlon Zakai
2013-08-15spam abort() messages to stderr as wellAlon Zakai
2013-08-09use instanceof operator for detecting ExitStatus throwAnthony Pesch
2013-08-09 - always throw an exception in exitAnthony Pesch
- remove default exit status prints - added EXITSTATUS global to enable exit callbacks to determine the status
2013-07-31added addOnPreRun and addOnPostRunAnthony Pesch
2013-07-31add some closure aliasesAlon Zakai
2013-07-30show exit status if exit() is called within main(); fixes test_exit_statusAlon Zakai
2013-07-29 - remove code that attempts to propogate _main's exit status through ↵Anthony Pesch
returns. we can't rely on that, the status must be signaled through an event to support both sync / async applications. - consolidate exit functionality - moved exitRuntime to callMain
2013-05-22do not call code-running callbacks if ABORTing; fixes #1191Alon Zakai
2013-05-19export callMain through closureAlon Zakai
2013-05-04make memory management sane: 0 is null, then static including globals, then ↵Alon Zakai
stack, then dynamic/sbrk. deprecate shared libs (BUILD_AS_SHARED_LIB)
2013-04-09make noInitialRun and INVOKE_RUN refer to main(), not run(). run() need not ↵Alon Zakai
call main(), and is necessary to set things up even if you call main() manually
2013-04-09run postsets right before main, and after the memory initializer has been set upAlon Zakai
2013-04-05assert on callMain happening when no dependencies leftAlon Zakai
2013-04-05ensure runtime initialized when dependencies have arrived, including the ↵Alon Zakai
memory initializer
2013-04-05refactor runtime initializationAlon Zakai
2013-04-05allow calling callMain even if run() was not calledAlon Zakai
2013-04-05initialize runtime from run() (asynchronously, if run is asynchronous)Alon Zakai
2013-03-20do not exist runtime if simulating an infinite loopAlon Zakai
2013-03-20do not show the simulate-infinite-loop exceptionAlon Zakai
2013-03-20remove CATCH_EXIT_CODE and make it the default behaviorAlon Zakai
2013-01-25benchmark code gen optionAlon Zakai
2013-01-07reset the stack top when CATCH_EXIT_CODEAlon Zakai
2012-12-07add asm imports and exports, hello world worksAlon Zakai
2012-12-07remove irrelevant code from asm moduleAlon Zakai
2012-12-07set up asm.js 'module'Alon Zakai
2012-11-12make Module.run accessible through closure also in pre and post-js (#704)Alon Zakai
2012-10-22handle no-data worker api calls, and more testsAlon Zakai
2012-10-22worker api closure fixes + additional testingAlon Zakai
2012-10-22initial work on worker apiAlon Zakai
2012-09-09clean up handling of initial runAlon Zakai
2012-09-08fix preRunAlon Zakai
2012-09-07run all available preRuns before checking if run must be delayedAlon Zakai