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

Unified Diff: frog/tree.dart

Issue 8478025: Restore r1383: Fix method resolution to warn about things that don't exist on the declared type. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years, 1 month 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: frog/tree.dart
diff --git a/frog/tree.dart b/frog/tree.dart
index bdc4cdbbf11eee23d7d0722b92405aa248efa6f3..dd846941282bb61cd899cf7705abdb868612c651 100644
--- a/frog/tree.dart
+++ b/frog/tree.dart
@@ -27,6 +27,7 @@ class Definition extends Statement {
Definition(SourceSpan span): super(span) {}
List<TypeParameter> get typeParameters() => null;
+ String get nativeType() => null;
jimhug 2011/11/10 15:47:21 This puzzled me for a while - even though I wrote
}
/** The base type for statements. */

Powered by Google App Engine
This is Rietveld 408576698