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

Unified Diff: runtime/vm/parser.cc

Issue 22999022: Report compile-time errors for conflicting overrides as specified by latest (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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: runtime/vm/parser.cc
===================================================================
--- runtime/vm/parser.cc (revision 26300)
+++ runtime/vm/parser.cc (working copy)
@@ -3122,7 +3122,7 @@
}
if (members->FieldNameExists(*field->name, !field->has_final)) {
ErrorMsg(field->name_pos,
- "'%s' field/method already defined\n", field->name->ToCString());
+ "field or method '%s' already defined", field->name->ToCString());
}
Function& getter = Function::Handle();
Function& setter = Function::Handle();

Powered by Google App Engine
This is Rietveld 408576698