| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 /// Library that re-exports libraries used throughout the compiler regardless | 5 /// Library that re-exports libraries used throughout the compiler regardless |
| 6 /// of phase or subfunctionality. | 6 /// of phase or subfunctionality. |
| 7 library dart2js.common; | 7 library dart2js.common; |
| 8 | 8 |
| 9 export 'diagnostics/diagnostic_listener.dart' show | 9 export 'diagnostics/diagnostic_listener.dart' |
| 10 DiagnosticMessage, | 10 show DiagnosticMessage, DiagnosticReporter; |
| 11 DiagnosticReporter; | 11 export 'diagnostics/invariant.dart' |
| 12 export 'diagnostics/invariant.dart' show | 12 show assertDebugMode, InternalErrorFunction, invariant; |
| 13 assertDebugMode, | 13 export 'diagnostics/messages.dart' show MessageKind; |
| 14 InternalErrorFunction, | 14 export 'diagnostics/source_span.dart' show SourceSpan; |
| 15 invariant; | 15 export 'diagnostics/spannable.dart' |
| 16 export 'diagnostics/messages.dart' show | 16 show |
| 17 MessageKind; | 17 CURRENT_ELEMENT_SPANNABLE, |
| 18 export 'diagnostics/source_span.dart' show | 18 NO_LOCATION_SPANNABLE, |
| 19 SourceSpan; | 19 Spannable, |
| 20 export 'diagnostics/spannable.dart' show | 20 SpannableAssertionFailure; |
| 21 CURRENT_ELEMENT_SPANNABLE, | |
| 22 NO_LOCATION_SPANNABLE, | |
| 23 Spannable, | |
| 24 SpannableAssertionFailure; | |
| 25 export 'helpers/helpers.dart'; | 21 export 'helpers/helpers.dart'; |
| OLD | NEW |