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

Unified Diff: tests/language_strong/call_non_method_field_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/call_non_method_field_test.dart
diff --git a/tests/language_strong/call_non_method_field_test.dart b/tests/language_strong/call_non_method_field_test.dart
index 5badc86cb7e976080a9fc8344ca01788b7ee8d9b..75f98aa773669295c37d8c1d45a04c834ead4ddc 100644
--- a/tests/language_strong/call_non_method_field_test.dart
+++ b/tests/language_strong/call_non_method_field_test.dart
@@ -14,10 +14,10 @@ class Hest extends Fisk {
main() {
Fisk x1 = new Fisk();
if (false) {
- x1.i(); /// 01: static type warning
+ x1.i(); //# 01: static type warning
}
Hest x2 = new Hest();
if (false) {
- x2.i(); /// 02: static type warning
+ x2.i(); //# 02: static type warning
}
}

Powered by Google App Engine
This is Rietveld 408576698