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' | 9 export 'diagnostics/diagnostic_listener.dart' |
10 show DiagnosticMessage, DiagnosticReporter; | 10 show DiagnosticMessage, DiagnosticReporter; |
11 export 'diagnostics/invariant.dart' | 11 export 'diagnostics/invariant.dart' |
12 show assertDebugMode, InternalErrorFunction, invariant; | 12 show assertDebugMode, invariant; |
13 export 'diagnostics/messages.dart' show MessageKind; | 13 export 'diagnostics/messages.dart' show MessageKind; |
14 export 'diagnostics/source_span.dart' show SourceSpan; | 14 export 'diagnostics/source_span.dart' show SourceSpan; |
15 export 'diagnostics/spannable.dart' | 15 export 'diagnostics/spannable.dart' |
16 show | 16 show |
17 CURRENT_ELEMENT_SPANNABLE, | 17 CURRENT_ELEMENT_SPANNABLE, |
18 NO_LOCATION_SPANNABLE, | 18 NO_LOCATION_SPANNABLE, |
19 Spannable, | 19 Spannable, |
20 SpannableAssertionFailure; | 20 SpannableAssertionFailure; |
21 export 'helpers/helpers.dart'; | 21 export 'helpers/helpers.dart'; |
OLD | NEW |