Lines Matching refs:FunctionRef
48 class FunctionRef; variable
708 bool SetAccessorProperty(const EcmaVM *vm, Local<JSValueRef> key, Local<FunctionRef> getter,
709 … Local<FunctionRef> setter, PropertyAttribute attribute = PropertyAttribute::Default());
741 class PUBLIC_API FunctionRef : public ObjectRef {
743 … static Local<FunctionRef> New(EcmaVM *vm, FunctionCallback nativeFunc, Deleter deleter = nullptr,
745 …static Local<FunctionRef> NewClassFunction(EcmaVM *vm, FunctionCallback nativeFunc, Deleter delete…
755 bool Inherit(const EcmaVM *vm, Local<FunctionRef> parent);
772 Local<PromiseRef> Catch(const EcmaVM *vm, Local<FunctionRef> handler);
773 Local<PromiseRef> Then(const EcmaVM *vm, Local<FunctionRef> handler);
774 Local<PromiseRef> Finally(const EcmaVM *vm, Local<FunctionRef> handler);
775 …Local<PromiseRef> Then(const EcmaVM *vm, Local<FunctionRef> onFulfilled, Local<FunctionRef> onReje…
1497 friend class FunctionRef; variable