(excPtr)
| 1709 | class EmscriptenSjLj extends EmscriptenEH {} |
| 1710 | class CppException extends EmscriptenEH { |
| 1711 | constructor(excPtr) { |
| 1712 | super(excPtr); |
| 1713 | this.excPtr = excPtr; |
| 1714 | const excInfo = getExceptionMessage(excPtr); |
| 1715 | this.name = excInfo[0]; |
| 1716 | this.message = excInfo[1]; |
| 1717 | } |
| 1718 | } |
| 1719 | var runtimeDebug = true; |
| 1720 | (() => { |
nothing calls this directly
no test coverage detected