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

Unified Diff: tests/language/string_interpolation9_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/string_interpolation6_test.dart ('k') | tests/language/string_interpolation_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/string_interpolation9_test.dart
diff --git a/tests/language/string_interpolation9_test.dart b/tests/language/string_interpolation9_test.dart
index ec89d324b0e06f201fd0e10d7d3bb1fab57b9d0e..e52db05fd63976f833611f053309fe7ec05df74c 100644
--- a/tests/language/string_interpolation9_test.dart
+++ b/tests/language/string_interpolation9_test.dart
@@ -7,29 +7,29 @@
main() {
var x;
- x = "$"; // /// 1: compile-time error
- x = "x$"; // /// 2: compile-time error
- x = "$x$"; // /// 3: compile-time error
- x = "$$x"; // /// 4: compile-time error
- x = "$ "; // /// 5: compile-time error
+ x = "$"; // //# 1: compile-time error
+ x = "x$"; // //# 2: compile-time error
+ x = "$x$"; // //# 3: compile-time error
+ x = "$$x"; // //# 4: compile-time error
+ x = "$ "; // //# 5: compile-time error
- x = '$'; // /// 6: compile-time error
- x = 'x$'; // /// 7: compile-time error
- x = '$x$'; // /// 8: compile-time error
- x = '$$x'; // /// 9: compile-time error
- x = '$ '; // /// 10: compile-time error
+ x = '$'; // //# 6: compile-time error
+ x = 'x$'; // //# 7: compile-time error
+ x = '$x$'; // //# 8: compile-time error
+ x = '$$x'; // //# 9: compile-time error
+ x = '$ '; // //# 10: compile-time error
- x = """$"""; // /// 11: compile-time error
- x = """x$"""; // /// 12: compile-time error
- x = """$x$"""; // /// 13: compile-time error
- x = """$$x"""; // /// 14: compile-time error
- x = """$ """; // /// 15: compile-time error
+ x = """$"""; // //# 11: compile-time error
+ x = """x$"""; // //# 12: compile-time error
+ x = """$x$"""; // //# 13: compile-time error
+ x = """$$x"""; // //# 14: compile-time error
+ x = """$ """; // //# 15: compile-time error
- x = '''$'''; // /// 16: compile-time error
- x = '''x$'''; // /// 17: compile-time error
- x = '''$x$'''; // /// 18: compile-time error
- x = '''$$x'''; // /// 19: compile-time error
- x = '''$ '''; // /// 20: compile-time error
+ x = '''$'''; // //# 16: compile-time error
+ x = '''x$'''; // //# 17: compile-time error
+ x = '''$x$'''; // //# 18: compile-time error
+ x = '''$$x'''; // //# 19: compile-time error
+ x = '''$ '''; // //# 20: compile-time error
return x;
}
« no previous file with comments | « tests/language/string_interpolation6_test.dart ('k') | tests/language/string_interpolation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698