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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java

Issue 10545189: Issue 3643. Associate 'no such method' problem with method name, not with whole invocation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Use 'resolutionError' flag in DartIdentifier Created 8 years, 6 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: compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
index 18541d351e9b1efea189a1d2accab065191b0905..58c1207304a929c3de08205803572e0c88d25fea 100644
--- a/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
+++ b/compiler/java/com/google/dart/compiler/resolver/TypeErrorCode.java
@@ -39,7 +39,7 @@ public enum TypeErrorCode implements ErrorCode {
INSTANTIATION_OF_ABSTRACT_CLASS("instantiation of an abstract class '%s'"),
INSTANTIATION_OF_CLASS_WITH_UNIMPLEMENTED_MEMBERS(
"instantiation of class %s with the inherited abstract members: %s"),
- INTERFACE_HAS_NO_METHOD_NAMED("%s has no method named \"%s\""),
+ INTERFACE_HAS_NO_METHOD_NAMED("\"%s\" has no method named \"%s\""),
INTERNAL_ERROR("internal error: %s", true),
IS_STATIC_FIELD_IN("\"%s\" is a static field in \"%s\""),
IS_STATIC_METHOD_IN("\"%s\" is a static method in \"%s\""),

Powered by Google App Engine
This is Rietveld 408576698