Chromium Code Reviews| Index: src/accessors.cc |
| diff --git a/src/accessors.cc b/src/accessors.cc |
| index 648f1135bc7f3f1fb2009a1b1cc46c821a59c70e..51db3615c382f38d787333b98ac753bf9e7f83d9 100644 |
| --- a/src/accessors.cc |
| +++ b/src/accessors.cc |
| @@ -576,6 +576,13 @@ const AccessorDescriptor Accessors::FunctionName = { |
| // |
| +Handle<Object> Accessors::FunctionGetArguments(Handle<Object> object) { |
| + Isolate* isolate = Isolate::Current(); |
| + CALL_HEAP_FUNCTION( |
| + isolate, Accessors::FunctionGetArguments(*object, 0), Object); |
|
Yang
2013/07/18 12:21:18
The call sites always have a comment that this can
Michael Starzinger
2013/07/18 13:01:03
See comment in the header.
|
| +} |
| + |
| + |
| static MaybeObject* ConstructArgumentsObjectForInlinedFunction( |
| JavaScriptFrame* frame, |
| Handle<JSFunction> inlined_function, |