| 714 | } |
| 715 | |
| 716 | static inline JSValue JS_NewCatchOffset(JSContext *ctx, int32_t val) |
| 717 | { |
| 718 | (void)&ctx; |
| 719 | return JS_MKVAL(JS_TAG_CATCH_OFFSET, val); |
| 720 | } |
| 721 | |
| 722 | static inline JSValue JS_NewInt64(JSContext *ctx, int64_t val) |
| 723 | { |
nothing calls this directly
no test coverage detected