| 585 | } |
| 586 | |
| 587 | static inline JS_BOOL JS_IsUndefined(JSValueConst v) { |
| 588 | return JS_VALUE_GET_TAG(v) == JS_TAG_UNDEFINED; |
| 589 | } |
| 590 | |
| 591 | static inline JS_BOOL JS_IsException(JSValueConst v) { |
| 592 | return js_unlikely(JS_VALUE_GET_TAG(v) == JS_TAG_EXCEPTION); |
no outgoing calls
no test coverage detected