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

Unified Diff: tests/language/this_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (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/this_test.dart
diff --git a/tests/language/this_test.dart b/tests/language/this_test.dart
index df5a599be5f60d363cd88d996e746a76210fa0fa..d66500b996d4b69d504054de09c63972105a1475 100644
--- a/tests/language/this_test.dart
+++ b/tests/language/this_test.dart
@@ -7,14 +7,14 @@ class Foo {
f() {}
testMe() {
- x.this; /// 01: compile-time error
- x.this(); /// 02: compile-time error
- x.this.x; /// 03: compile-time error
- x.this().x; /// 04: compile-time error
- f().this; /// 05: compile-time error
- f().this(); /// 06: compile-time error
- f().this.f(); /// 07: compile-time error
- f().this().f(); /// 08: compile-time error
+ x.this; //# 01: compile-time error
+ x.this(); //# 02: compile-time error
+ x.this.x; //# 03: compile-time error
+ x.this().x; //# 04: compile-time error
+ f().this; //# 05: compile-time error
+ f().this(); //# 06: compile-time error
+ f().this.f(); //# 07: compile-time error
+ f().this().f(); //# 08: compile-time error
}
}
« no previous file with comments | « tests/language/this_conditional_operator_test.dart ('k') | tests/language/top_level_getter_no_setter1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698