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

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

Issue 9980004: Look up the correct constructor for default classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 099f146086f0531b5e39d1c1a1f844b8bed72e0c..34d876f6204b3d1235588024be180baddebb2c4e 100644
--- a/lib/compiler/implementation/warnings.dart
+++ b/lib/compiler/implementation/warnings.dart
@@ -53,7 +53,7 @@ class MessageKind {
static final CANNOT_FIND_CONSTRUCTOR = const MessageKind(
'cannot find constructor #{1}');
static final CANNOT_FIND_CONSTRUCTOR2 = const MessageKind(
- 'cannot find constructor #{1} or #{2}');
+ 'cannot find constructor #{1} in #{2}');
static final CYCLIC_CLASS_HIERARCHY = const MessageKind(
'#{1} creates a cycle in the class hierarchy');
static final INVALID_RECEIVER_IN_INITIALIZER = const MessageKind(

Powered by Google App Engine
This is Rietveld 408576698