| 56 | } |
| 57 | |
| 58 | bool JSPromiseCancel::isJSPromiseCancelable(IJavaScriptContext& jsContext, const JSValue& jsPromise) { |
| 59 | return jsContext.hasObjectProperty(jsPromise, getCancelPropertyKey(jsContext)); |
| 60 | } |
| 61 | |
| 62 | JSPromiseOnFulfilled::JSPromiseOnFulfilled(const Ref<PromiseCallback>& callback, |
| 63 | const Ref<ValueMarshaller<JSValueRef>>& valueMarshaller) |
nothing calls this directly
no test coverage detected