| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 import "package:compiler/src/scanner/scannerlib.dart"; | 6 import "package:compiler/src/scanner/scannerlib.dart"; |
| 7 import "package:compiler/src/tree/tree.dart"; | 7 import "package:compiler/src/tree/tree.dart"; |
| 8 | 8 |
| 9 import "package:compiler/src/diagnostic_listener.dart"; | 9 import "package:compiler/src/diagnostics/diagnostic_listener.dart"; |
| 10 import "package:compiler/src/elements/elements.dart" | 10 import "package:compiler/src/elements/elements.dart" |
| 11 show CompilationUnitElement, | 11 show CompilationUnitElement, |
| 12 LibraryElement; | 12 LibraryElement; |
| 13 import "package:compiler/src/elements/modelx.dart" | 13 import "package:compiler/src/elements/modelx.dart" |
| 14 show CompilationUnitElementX, | 14 show CompilationUnitElementX, |
| 15 LibraryElementX; | 15 LibraryElementX; |
| 16 import "package:compiler/src/script.dart"; | 16 import "package:compiler/src/script.dart"; |
| 17 | 17 |
| 18 main() { | 18 main() { |
| 19 testClassDef(); | 19 testClassDef(); |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 messages.add(reason); | 105 messages.add(reason); |
| 106 throw reason; | 106 throw reason; |
| 107 } | 107 } |
| 108 | 108 |
| 109 void log(message) { | 109 void log(message) { |
| 110 messages.add(message); | 110 messages.add(message); |
| 111 } | 111 } |
| 112 | 112 |
| 113 noSuchMethod(Invocation invocation) => throw 'unsupported operation'; | 113 noSuchMethod(Invocation invocation) => throw 'unsupported operation'; |
| 114 } | 114 } |
| OLD | NEW |