| 1271 | } |
| 1272 | |
| 1273 | void tsn_dump_error(tsn_vm* ctx) { |
| 1274 | tsn_value exception_val = JS_GetException(ctx); |
| 1275 | tsn_dump_error1(ctx, exception_val); |
| 1276 | JS_FreeValue(ctx, exception_val); |
| 1277 | } |
| 1278 | |
| 1279 | static void tsn_update_stack_limit(tsn_runtime* runtime) { |
| 1280 | auto stackAttrs = Valdi::Thread::getCurrentStackAttrs(); |
no test coverage detected