Lines Matching defs:undefined

57     JSHandle<JSTaggedValue> undefined = thread->GlobalConstants()->GetHandledUndefined();
58 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, method, obj, undefined, 0);
64 THROW_TYPE_ERROR_AND_RETURN(thread, "JSIterator::GetIterator: iter is not object", undefined);
76 // ii. If method is undefined, then
96 JSHandle<JSTaggedValue> undefined = thread->GlobalConstants()->GetHandledUndefined();
97 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, method, obj, undefined, 0);
103 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not object", undefined);
118 JSHandle<JSTaggedValue> undefined = globalConst->GetHandledUndefined();
119 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, next, iter, undefined, 0);
122 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
125 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not Object", undefined);
139 JSHandle<JSTaggedValue> undefined = globalConst->GetHandledUndefined();
140 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, next, iter, undefined, 1);
141 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
145 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
148 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not Object", undefined);
161 JSHandle<JSTaggedValue> undefined = globalConst->GetHandledUndefined();
162 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, next, iterator, undefined, 1);
163 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
167 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
170 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not Object", undefined);
182 JSHandle<JSTaggedValue> undefined = globalConst->GetHandledUndefined();
183 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, next, iterator, undefined, 0);
186 RETURN_VALUE_IF_ABRUPT_COMPLETION(thread, undefined);
189 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not Object", undefined);
252 // 5.If return is undefined, return Completion(completion).
264 JSHandle<JSTaggedValue> undefined = globalConst->GetHandledUndefined();
265 EcmaRuntimeCallInfo *info = EcmaInterpreter::NewRuntimeCallInfo(thread, returnFunc, iter, undefined, 0);
289 THROW_TYPE_ERROR_AND_RETURN(thread, "Is not object", undefined);