| Index: runtime/vm/ast_printer.cc
|
| ===================================================================
|
| --- runtime/vm/ast_printer.cc (revision 44620)
|
| +++ runtime/vm/ast_printer.cc (working copy)
|
| @@ -30,7 +30,10 @@
|
| LocalScope* scope = node->scope();
|
| ISL_Print("(%s (scope \"%p\"", node->PrettyName(), scope);
|
| if (scope != NULL) {
|
| - ISL_Print(" loop %d", scope->loop_level());
|
| + ISL_Print(" (%d-%d) loop %d",
|
| + scope->begin_token_pos(),
|
| + scope->end_token_pos(),
|
| + scope->loop_level());
|
| if (scope->HasContextLevel()) {
|
| ISL_Print(" context %d captures %d",
|
| scope->context_level(),
|
|
|