| 721 | int JS_SetPropertyInternal( |
| 722 | JSContext* ctx, JSValueConst obj, JSAtom prop, JSValue val, JSValueConst this_obj, int flags); |
| 723 | static inline int JS_SetProperty(JSContext* ctx, JSValueConst this_obj, JSAtom prop, JSValue val) { |
| 724 | return JS_SetPropertyInternal(ctx, this_obj, prop, val, this_obj, JS_PROP_THROW); |
| 725 | } |
| 726 | |
| 727 | void JS_SetPropertyCacheEnabledRT(JSRuntime* rt, int enabled); |
| 728 | int JS_SetProperty_tsn(JSContext* ctx, JSValueConst this_obj, JSAtom prop, JSValue val); |
no outgoing calls
no test coverage detected