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

Unified Diff: tests/language_strong/mixin_super_constructor2_test.dart

Issue 2861783002: fix more mixin tests to work in strong mode (Closed)
Patch Set: Created 3 years, 8 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_strong/mixin_super_constructor2_test.dart
diff --git a/tests/language_strong/mixin_super_constructor2_test.dart b/tests/language_strong/mixin_super_constructor2_test.dart
index b54c7918b461490635f36fb66634be4c372531c5..bb3b60efe6ec5af9ac9945d07aa7ce38171c3f25 100644
--- a/tests/language_strong/mixin_super_constructor2_test.dart
+++ b/tests/language_strong/mixin_super_constructor2_test.dart
@@ -5,7 +5,7 @@
import "package:expect/expect.dart";
class Base {
- int i, j;
+ var i, j;
Base.ctor1(int i, this.j) : this.i = i + 7;
Base.ctor2(int i, this.j) : this.i = i + 8;
}
« no previous file with comments | « tests/language_strong/mixin_super_bound_test.dart ('k') | tests/language_strong/mixin_super_constructor_default_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698