| /** | |
| * @license | |
| * Copyright 2015 The Emscripten Authors | |
| * SPDX-License-Identifier: MIT | |
| */ | |
| mergeInto(LibraryManager.library, { | |
| $abortStackOverflow__import: true, | |
| $abortStackOverflow: function(allocSize) { | |
| abort('Stack overflow! Attempted to allocate ' + allocSize + ' bytes on the stack, but stack has only ' + (_emscripten_stack_get_free() + allocSize) + ' bytes available!'); | |
| }, | |
| }); |