Lines Matching refs:trap
115 // 5. Let trap be ? GetMethod(handler, "apply").
116 // 6. If trap is undefined, then
118 TNode<Object> trap = GetMethod(context, handler, trap_name, &trap_undefined);
129 // 8. Return Call(trap, handler, «target, thisArgument, argArray»).
130 TNode<Object> result = Call(context, trap, handler, target, receiver, array);
169 // 5. Let trap be ? GetMethod(handler, "construct").
170 // 6. If trap is undefined, then
172 TNode<Object> trap = GetMethod(context, handler, trap_name, &trap_undefined);
182 // 8. Let newObj be ? Call(trap, handler, « target, argArray, newTarget »).
184 Call(context, trap, handler, target, array, new_target);