| 696 | /* value handling */ |
| 697 | |
| 698 | static inline JSValue JS_NewBool(JSContext *ctx, bool val) |
| 699 | { |
| 700 | (void)&ctx; |
| 701 | return JS_MKVAL(JS_TAG_BOOL, (val != 0)); |
| 702 | } |
| 703 | |
| 704 | static inline JSValue JS_NewInt32(JSContext *ctx, int32_t val) |
| 705 | { |
no test coverage detected