Lines Matching refs:Call
40 // 6. If IsCallable(target) is true, then P.[[Call]] as specified in 9.5.12.
72 // 8. Let handlerProto be Call(trap, handler, «target»).
77 JSTaggedValue handlerProto = JSFunction::Call(info);
140 JSTaggedValue trapResult = JSFunction::Call(info);
142 // 9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, V»)).
195 // 8. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target»)).
202 JSTaggedValue trapResult = JSFunction::Call(info);
232 // 8. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target»)).
253 JSTaggedValue trapResult = JSFunction::Call(info);
285 // 9. Let trapResultObj be Call(trap, handler, «target, P»).
308 JSTaggedValue trapResultObj = JSFunction::Call(info);
350 // 19. Call CompletePropertyDescriptor(resultDesc).
403 JSTaggedValue trapResult = JSFunction::Call(info);
478 // 9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, P»)).
486 JSTaggedValue trapResult = JSFunction::Call(info);
541 // 9. Let trapResult be Call(trap, handler, «target, P, Receiver»).
549 JSTaggedValue trapResult = JSFunction::Call(info);
613 // 9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, P, V, Receiver»))
621 JSTaggedValue trapResult = JSFunction::Call(info);
676 // 9. Let booleanTrapResult be ToBoolean(Call(trap, handler, «target, P»)).
684 JSTaggedValue trapResult = JSFunction::Call(info);
739 // 8.Let trapResultArray be Call(trap, handler, «target»).
745 JSTaggedValue res = JSFunction::Call(info);
885 JSTaggedValue res = JSFunction::Call(info);
924 // ES6 9.5.13 [[Call]] (thisArgument, argumentsList)
937 THROW_TYPE_ERROR_AND_RETURN(thread, "Call: handler is null", JSTaggedValue::Exception());
952 // a.Return Call(target, thisArgument, argumentsList).
958 return JSFunction::Call(runtimeInfo);
968 // 9.Return Call(trap, handler, «target, thisArgument, argArray»).
974 return JSFunction::Call(runtimeInfo);
1026 // step 8 ~ 9 Call(trap, handler, «target, argArray, newTarget »).
1040 JSTaggedValue newObj = JSFunction::Call(runtimeInfo);