Lines Matching refs:arguments
574 Handle<JSObject> arguments =
581 arguments->set_elements(*array);
584 // Return the freshly allocated arguments object.
585 return *arguments;
609 // correct number of arguments and no allocated arguments object, so
616 // If there is an arguments variable in the stack, we return that.
621 Handle<Object> arguments(frame->GetExpression(index), isolate);
622 if (!arguments->IsArgumentsMarker()) return *arguments;
626 // If there is no arguments variable in the stack or we have an
627 // optimized frame, we find the frame that holds the actual arguments
632 // Get the number of arguments and construct an arguments object
635 Handle<JSObject> arguments = isolate->factory()->NewArgumentsObject(
639 // Copy the parameters to the arguments object.
642 arguments->set_elements(*array);
644 // Return the freshly allocated arguments object.
645 return *arguments;
760 // and its associated throwing caller and arguments.