| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // See inspector.txt for expected behavior. | 5 // See inspector.txt for expected behavior. |
| 6 | 6 |
| 7 library manual_inspector_test; | 7 library manual_inspector_test; |
| 8 | 8 |
| 9 import 'dart:async'; | |
| 10 import 'dart:isolate'; | 9 import 'dart:isolate'; |
| 11 import 'dart:mirrors'; | 10 import 'dart:mirrors'; |
| 12 import 'dart:developer'; | 11 import 'dart:developer'; |
| 13 import 'dart:typed_data'; | 12 import 'dart:typed_data'; |
| 14 | 13 |
| 15 part 'inspector_part.dart'; | 14 part 'inspector_part.dart'; |
| 16 | 15 |
| 17 var libraryField; | 16 var libraryField; |
| 18 var node; | 17 var node; |
| 19 var uninitialized = new Object(); | 18 var uninitialized = new Object(); |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 typed = new Typed(); | 241 typed = new Typed(); |
| 243 node = new Node(); | 242 node = new Node(); |
| 244 node.main(); | 243 node.main(); |
| 245 } | 244 } |
| 246 | 245 |
| 247 class C { | 246 class C { |
| 248 static doPrint() { | 247 static doPrint() { |
| 249 print("Original"); | 248 print("Original"); |
| 250 } | 249 } |
| 251 } | 250 } |
| OLD | NEW |