view Platforms/Wasm/WasmDelayedCallExecutor.js @ 463:1155d0b4f557 am-touch-events

debug build by default to have access to the C++ call stack when assertion fails
author Alain Mazy <alain@mazy.be>
date Thu, 07 Feb 2019 09:26:57 +0100
parents 26b90b110719
children 5055031f4a06
line wrap: on
line source

mergeInto(LibraryManager.library, {
  WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
    setTimeout(function() {
      WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
    }, timeoutInMs);
  }
});