| Index: runtime/vm/isolate.cc
|
| ===================================================================
|
| --- runtime/vm/isolate.cc (revision 26441)
|
| +++ runtime/vm/isolate.cc (working copy)
|
| @@ -890,7 +890,7 @@
|
| if (i > 0) {
|
| buffer.Printf(", ");
|
| }
|
| - ActivationFrame* frame = stack->ActivationFrameAt(i);
|
| + ActivationFrame* frame = stack->FrameAt(i);
|
| url ^= frame->SourceUrl();
|
| function ^= frame->function().UserVisibleName();
|
| buffer.Printf("{ \"url\": \"%s\", ", url.ToCString());
|
| @@ -920,7 +920,7 @@
|
| // Frame no longer available.
|
| return NULL;
|
| }
|
| - ActivationFrame* frame = stack->ActivationFrameAt(frame_index);
|
| + ActivationFrame* frame = stack->FrameAt(frame_index);
|
| TextBuffer buffer(256);
|
| buffer.Printf("{ \"handle\": \"0x%" Px64 "\", \"frame_index\": %" Pd ", ",
|
| reinterpret_cast<int64_t>(isolate), frame_index);
|
|
|