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

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

Issue 21544003: Handle missing imports/exports/parts. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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: sdk/lib/_internal/compiler/implementation/warnings.dart
diff --git a/sdk/lib/_internal/compiler/implementation/warnings.dart b/sdk/lib/_internal/compiler/implementation/warnings.dart
index 7950a313c8f4f0c5cab3880b80be103b7e1c7e0c..4d70197e633f6b57d48e6db2f38e74297418a9c9 100644
--- a/sdk/lib/_internal/compiler/implementation/warnings.dart
+++ b/sdk/lib/_internal/compiler/implementation/warnings.dart
@@ -615,6 +615,16 @@ Error: "#{value}" is not a valid Symbol name because is not:
static const MessageKind PACKAGE_ROOT_NOT_SET = const MessageKind(
'Error: Cannot resolve "#{uri}". Package root has not been set.');
+
+ static const MessageKind INTERNAL_LIBRARY_FROM = const MessageKind(
+ 'Error: Internal library "#{resolvedUri}" is not accessible from '
+ '"#{importingUri}".');
+
+ static const MessageKind INTERNAL_LIBRARY = const MessageKind(
+ 'Error: Internal library "#{resolvedUri}" is not accessible.');
+
+ static const MessageKind LIBRARY_NOT_FOUND = const MessageKind(
+ 'Error: Library not found "#{resolvedUri}".');
static const MessageKind COMPILER_CRASHED = const MessageKind(
'Error: The compiler crashed when compiling this element.');

Powered by Google App Engine
This is Rietveld 408576698