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

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

Issue 10905062: Fix issue 4361 by checking in the resolver if the getter/setter exists. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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
===================================================================
--- lib/compiler/implementation/warnings.dart (revision 11766)
+++ lib/compiler/implementation/warnings.dart (working copy)
@@ -232,6 +232,12 @@
static const PARAMETER_NAME_EXPECTED = const MessageKind(
"Error: parameter name expected.");
+ static const CANNOT_RESOLVE_GETTER = const MessageKind(
+ 'Cannot resolve getter.');
kasperl 2012/09/04 05:50:07 Error: cannot ...
ngeoffray 2012/09/04 08:32:14 Actually, we now get printed Error: Error :-( So w
+
+ static const CANNOT_RESOLVE_SETTER = const MessageKind(
+ 'Cannot resolve setter.');
+
static const COMPILER_CRASHED = const MessageKind(
"Error: The compiler crashed when compiling this element.");

Powered by Google App Engine
This is Rietveld 408576698