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

Unified Diff: tests/language_strong/getter_parameters_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/getter_parameters_test.dart
diff --git a/tests/language_strong/getter_parameters_test.dart b/tests/language_strong/getter_parameters_test.dart
index 491a82b86a4dd207fbe72bf3c4e9299694644a90..c98a98af75396bc4f0a01d035dce77e00f881f29 100644
--- a/tests/language_strong/getter_parameters_test.dart
+++ b/tests/language_strong/getter_parameters_test.dart
@@ -6,16 +6,16 @@
get f1 => null;
get f2
-() /// 01: compile-time error
+() //# 01: compile-time error
=> null;
get f3
-(arg) /// 02: compile-time error
+(arg) //# 02: compile-time error
=> null;
get f4
-([arg]) /// 03: compile-time error
+([arg]) //# 03: compile-time error
=> null;
get f5
-({arg}) /// 04: compile-time error
+({arg}) //# 04: compile-time error
=> null;
main() {

Powered by Google App Engine
This is Rietveld 408576698