Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(165)

Side by Side Diff: pkg/compiler/lib/src/common.dart

Issue 1859343004: dartfmt pkg/compiler (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/common/backend_api.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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';
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/common/backend_api.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698