Chromium Code Reviews| Index: src/accessors.cc |
| =================================================================== |
| --- src/accessors.cc (revision 6199) |
| +++ src/accessors.cc (working copy) |
| @@ -775,7 +775,7 @@ |
| if (index >= 0) { |
| Handle<Object> arguments = |
| Handle<Object>(frame->GetExpression(index)); |
| - if (!arguments->IsTheHole()) return *arguments; |
| + if (!arguments->IsArgumentsMarker()) return *arguments; |
| } |
| // If there isn't an arguments variable in the stack, we need to |