Home | History | Annotate | Download | only in src

Lines Matching defs:arguments

1126   Handle<JSObject> arguments =
1138 arguments->set_elements(*array);
1144 // Return the freshly allocated arguments object.
1145 return arguments;
1173 // correct number of arguments and no allocated arguments object, so
1179 // Find the frame that holds the actual arguments passed to the function.
1183 // Get the number of arguments and construct an arguments object
1186 Handle<JSObject> arguments = isolate->factory()->NewArgumentsObject(
1190 // Copy the parameters to the arguments object.
1193 arguments->set_elements(*array);
1195 // Return the freshly allocated arguments object.
1196 return arguments;
1225 // Function arguments is non writable, non configurable.