| 713 | JSValue JS_GetPropertyInternalWithIC( |
| 714 | JSContext* ctx, JSValueConst obj, JSAtom prop, JSValueConst receiver, JS_BOOL throw_ref_error, JS_PropCache_tsn* ic); |
| 715 | static js_force_inline JSValue JS_GetProperty(JSContext* ctx, JSValueConst this_obj, JSAtom prop) { |
| 716 | return JS_GetPropertyInternalWithIC(ctx, this_obj, prop, this_obj, 0, NULL); |
| 717 | } |
| 718 | JSValue JS_GetPropertyStr(JSContext* ctx, JSValueConst this_obj, const char* prop); |
| 719 | JSValue JS_GetPropertyUint32(JSContext* ctx, JSValueConst this_obj, uint32_t idx); |
| 720 |
no outgoing calls
no test coverage detected