| Index: src/accessors.cc
|
| ===================================================================
|
| --- src/accessors.cc (revision 7511)
|
| +++ src/accessors.cc (working copy)
|
| @@ -603,7 +603,7 @@
|
|
|
| // Find the top invocation of the function by traversing frames.
|
| List<JSFunction*> functions(2);
|
| - for (JavaScriptFrameIterator it; !it.done(); it.Advance()) {
|
| + for (JavaScriptFrameIterator it(isolate); !it.done(); it.Advance()) {
|
| JavaScriptFrame* frame = it.frame();
|
| frame->GetFunctions(&functions);
|
| for (int i = functions.length() - 1; i >= 0; i--) {
|
| @@ -692,7 +692,7 @@
|
| Handle<JSFunction> function(holder, isolate);
|
|
|
| List<JSFunction*> functions(2);
|
| - for (JavaScriptFrameIterator it; !it.done(); it.Advance()) {
|
| + for (JavaScriptFrameIterator it(isolate); !it.done(); it.Advance()) {
|
| JavaScriptFrame* frame = it.frame();
|
| frame->GetFunctions(&functions);
|
| for (int i = functions.length() - 1; i >= 0; i--) {
|
|
|