(condition, text)
| 464 | var ABORT = false; |
| 465 | var EXITSTATUS; |
| 466 | function assert(condition, text) { |
| 467 | if (!condition) { |
| 468 | abort("Assertion failed: " + text); |
| 469 | } |
| 470 | } |
| 471 | var UTF8Decoder = |
| 472 | typeof TextDecoder !== "undefined" ? new TextDecoder("utf8") : undefined; |
| 473 | function UTF8ArrayToString(heap, idx, maxBytesToRead) { |
no test coverage detected