mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-12 02:30:29 +09:00

* Moving Wasm debugger to dotnet/runtime The build is working. The tests are running. - make -C src/mono/wasm/ run-debugger-tests
11 lines
301 B
JavaScript
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)
|
|
},
|
|
};
|