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

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

Issue 2439573003: Experiment with new function-type syntax.
Patch Set: Change a few more typedefs. Created 4 years, 2 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
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' 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';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698