Lines Matching refs:arguments
597 Handle<JSObject> arguments =
604 arguments->set_elements(*array);
607 // Return the freshly allocated arguments object.
608 return *arguments;
631 // correct number of arguments and no allocated arguments object, so
638 // If there is an arguments variable in the stack, we return that.
643 Handle<Object> arguments(frame->GetExpression(index), isolate);
644 if (!arguments->IsArgumentsMarker()) return *arguments;
648 // If there is no arguments variable in the stack or we have an
649 // optimized frame, we find the frame that holds the actual arguments
654 // Get the number of arguments and construct an arguments object
657 Handle<JSObject> arguments = isolate->factory()->NewArgumentsObject(
661 // Copy the parameters to the arguments object.
664 arguments->set_elements(*array);
666 // Return the freshly allocated arguments object.
667 return *arguments;
771 // and its associated throwing caller and arguments.