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

Unified Diff: tests/language/main_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
« no previous file with comments | « tests/language/main_not_a_function_test.dart ('k') | tests/language/malbounded_instantiation_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/main_test.dart
diff --git a/tests/language/main_test.dart b/tests/language/main_test.dart
index 151636b465980be98e25d1ea6e4b43045b58c448..db9324d874d0403a3587d18894284d5ee48dfdc3 100644
--- a/tests/language/main_test.dart
+++ b/tests/language/main_test.dart
@@ -4,21 +4,21 @@
main(
-a // /// 01: ok
-a, b // /// 02: ok
-a, b, c // /// 03: static type warning, runtime error
-a, b, {c} /// 04: ok
-a, b, [c] /// 05: ok
+a // //# 01: ok
+a, b // //# 02: ok
+a, b, c // //# 03: static type warning, runtime error
+a, b, {c} //# 04: ok
+a, b, [c] //# 05: ok
-[a] // /// 20: ok
-a, [b] // /// 21: ok
-[a, b] // /// 22: ok
+[a] // //# 20: ok
+a, [b] // //# 21: ok
+[a, b] // //# 22: ok
-{a} // /// 41: ok
-a, {b} // /// 42: ok
-{a, b} // /// 43: ok
-[a, b, c] /// 44: ok
-{a, b, c} /// 45: ok
+{a} // //# 41: ok
+a, {b} // //# 42: ok
+{a, b} // //# 43: ok
+[a, b, c] //# 44: ok
+{a, b, c} //# 45: ok
) {
}
« no previous file with comments | « tests/language/main_not_a_function_test.dart ('k') | tests/language/malbounded_instantiation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698