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

Unified Diff: lib/compiler/implementation/warnings.dart

Issue 10990060: Added support for exports and re-exports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Status updated. Created 8 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 side-by-side diff with in-line comments
Download patch
Index: lib/compiler/implementation/warnings.dart
diff --git a/lib/compiler/implementation/warnings.dart b/lib/compiler/implementation/warnings.dart
index 240fe5874eadd3cc9bebe927428d088d4c658033..4ffb586257024c95da440b84b75ebf63c0908c4e 100644
--- a/lib/compiler/implementation/warnings.dart
+++ b/lib/compiler/implementation/warnings.dart
@@ -48,6 +48,8 @@ class MessageKind {
'duplicate definition of #{1}');
static const DUPLICATE_IMPORT = const MessageKind(
'duplicate import of #{1}');
+ static const DUPLICATE_EXPORT = const MessageKind(
+ 'duplicate export of #{1}');
static const NOT_A_TYPE = const MessageKind(
'#{1} is not a type');
static const NOT_A_PREFIX = const MessageKind(

Powered by Google App Engine
This is Rietveld 408576698