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

Unified Diff: tests/language_strong/mixin_super_constructor_positionals_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 years, 9 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_constructor_positionals_test.dart
diff --git a/tests/language_strong/mixin_super_constructor_positionals_test.dart b/tests/language_strong/mixin_super_constructor_positionals_test.dart
index 289822d4535119a07e48340c237e351c73c14dd3..e99cdd103bd89731f8b83640ce8c3d7ec27e79af 100644
--- a/tests/language_strong/mixin_super_constructor_positionals_test.dart
+++ b/tests/language_strong/mixin_super_constructor_positionals_test.dart
@@ -7,9 +7,9 @@ import "package:expect/expect.dart";
class Base {
int i, j;
Base.ctor(int this.i,
- [ /// 01: compile-time error
+ [ //# 01: compile-time error
int this.j
- ] /// 01: continued
+ ] //# 01: continued
);
}
@@ -23,7 +23,7 @@ abstract class M {
class C extends Base with M {
int l = 131;
C.foo() : super.ctor(1, 13);
- C.bar() : super.ctor(1); /// 01: continued
+ C.bar() : super.ctor(1); //# 01: continued
}
main() {
@@ -33,5 +33,5 @@ main() {
Expect.equals(14, c1.foo());
Expect.equals(42, c1.k);
Expect.equals(131, c1.l);
- C c2 = new C.bar(); /// 01: continued
+ C c2 = new C.bar(); //# 01: continued
}

Powered by Google App Engine
This is Rietveld 408576698