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

Unified Diff: tests/language/override_inheritance_field_test.dart

Issue 152593002: Version 1.2.0-dev.3.1 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 6 years, 11 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: tests/language/override_inheritance_field_test.dart
===================================================================
--- tests/language/override_inheritance_field_test.dart (revision 32236)
+++ tests/language/override_inheritance_field_test.dart (working copy)
@@ -56,6 +56,7 @@
set setter11(String _) => null; /// 31: continued
set setter12(int _) => null; /// 32: static type warning
set setter13(int _) => null; /// 33: static type warning
+ set setter13(num _) => null; /// 33a: static type warning
set setter14(int _) => null; /// 34: static type warning
}
@@ -65,6 +66,7 @@
num get getter11 => null; /// 11: continued
set setter12(String _) => null; /// 32: continued
set setter13(num _) => null; /// 33: continued
+ set setter13(int _) => null; /// 33a: continued
set setter14(num _) => null; /// 34: continued
}
@@ -112,6 +114,7 @@
double get getter10 => null; /// 10: continued
String get getter11 => null; /// 11: continued
set setter13(double _) => null; /// 33: continued
+ set setter13(double _) => null; /// 33a: continued
set setter14(String _) => null; /// 34: continued
}
« no previous file with comments | « tests/language/override_inheritance_abstract_test.dart ('k') | tests/language/override_inheritance_generic_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698