1
0
Fork 0
mirror of https://github.com/VSadov/Satori.git synced 2025-06-12 02:30:29 +09:00
Satori/src/mono/wasm/debugger/tests/runtime-debugger.js
Thays Grazia 03d2e48212
[wasm] Moving wasm debugger to dotnet/runtime (#40146)
* Moving Wasm debugger to dotnet/runtime

The build is working.
The tests are running.
- make -C src/mono/wasm/ run-debugger-tests
2020-08-05 19:34:41 -03:00

11 lines
301 B
JavaScript

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
var Module = {
onRuntimeInitialized: function () {
config.loaded_cb = function () {
App.init ();
};
MONO.mono_load_runtime_and_bcl_args (config)
},
};