Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/stubs/
Druntime_stubs-inl.h111 return RuntimeThrowTypeError(thread, "Cannot use 'in' operator in Non-Object"); in RuntimeIsIn()
275 return RuntimeThrowTypeError(thread, "Cannot Newobjspread"); in RuntimeNewObjApply()
499 return RuntimeThrowTypeError(thread, "the Iterator is not an ecmaobject."); in RuntimeGetIteratorNext()
565 …return RuntimeThrowTypeError(thread, "In a class, static property named 'prototype' throw a TypeEr… in RuntimeStOwnByValue()
577 return RuntimeThrowTypeError(thread, "StOwnByValue failed"); in RuntimeStOwnByValue()
684 return RuntimeThrowTypeError(thread, "SetOwnByIndex failed"); in RuntimeStOwnByIndex()
905 return RuntimeThrowTypeError(thread, "parent class is not constructor"); in RuntimeSetClassInheritanceRelationship()
912 return RuntimeThrowTypeError(thread, "parent class have no valid prototype"); in RuntimeSetClassInheritanceRelationship()
977 …return RuntimeThrowTypeError(thread, "In a class, static property named 'prototype' throw a TypeEr… in RuntimeStOwnByValueWithNameSet()
989 return RuntimeThrowTypeError(thread, "StOwnByValueWithNameSet failed"); in RuntimeStOwnByValueWithNameSet()
[all …]
Druntime_stubs.h627 static inline JSTaggedValue RuntimeThrowTypeError(JSThread *thread, const char *message);
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dslow_runtime_stub.cpp944 return RuntimeStubs::RuntimeThrowTypeError(thread, message); in ThrowTypeError()