Home
last modified time | relevance | path

Searched refs:nativeConstructor (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dobject_factory.cpp818 JSHandle<JSTaggedValue> nativeConstructor; in NewJSError() local
821 nativeConstructor = env->GetRangeErrorFunction(); in NewJSError()
824 nativeConstructor = env->GetEvalErrorFunction(); in NewJSError()
827 nativeConstructor = env->GetReferenceErrorFunction(); in NewJSError()
830 nativeConstructor = env->GetTypeErrorFunction(); in NewJSError()
833 nativeConstructor = env->GetURIErrorFunction(); in NewJSError()
836 nativeConstructor = env->GetSyntaxErrorFunction(); in NewJSError()
839 nativeConstructor = env->GetOOMErrorFunction(); in NewJSError()
842 nativeConstructor = env->GetErrorFunction(); in NewJSError()
845 JSHandle<JSFunction> nativeFunc = JSHandle<JSFunction>::Cast(nativeConstructor); in NewJSError()
[all …]
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins.h29 EcmaEntrypoint nativeConstructor{nullptr};
Dbuiltins.cpp1179 error->nativeConstructor = constructor; in GeneralUpdateError()
1241 …actory_->NewJSNativeErrorFunction(env, reinterpret_cast<void *>(errorParameter.nativeConstructor)); in InitializeError()