| OLD | NEW |
| 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import 'dart:html'; | 5 import 'dart:html'; |
| 6 import 'dart:async'; | 6 import 'dart:async'; |
| 7 import 'package:observatory/models.dart' as M; | 7 import 'package:observatory/models.dart' as M; |
| 8 import 'package:observatory/src/elements/curly_block.dart'; | 8 import 'package:observatory/src/elements/curly_block.dart'; |
| 9 import 'package:observatory/src/elements/instance_ref.dart'; | 9 import 'package:observatory/src/elements/instance_ref.dart'; |
| 10 import 'package:observatory/src/elements/helpers/any_ref.dart'; | 10 import 'package:observatory/src/elements/helpers/any_ref.dart'; |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 new SpanElement() | 114 new SpanElement() |
| 115 ..text = 'from word [ ${item.parentWordOffset} ] of '); | 115 ..text = 'from word [ ${item.parentWordOffset} ] of '); |
| 116 } else { | 116 } else { |
| 117 content.add(new SpanElement()..text = 'from '); | 117 content.add(new SpanElement()..text = 'from '); |
| 118 } | 118 } |
| 119 | 119 |
| 120 content.add( | 120 content.add( |
| 121 anyRef(_isolate, item.source, _instances, queue: _r.queue) | 121 anyRef(_isolate, item.source, _instances, queue: _r.queue) |
| 122 ); | 122 ); |
| 123 | 123 |
| 124 return new DivElement()..classes = ['indent']..children = content; | 124 return new DivElement()..classes = ['indent'] |
| 125 ..children = content; |
| 125 } | 126 } |
| 126 } | 127 } |
| OLD | NEW |