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

Unified Diff: tests/language_strong/unsupported_operators_test.dart

Issue 2768073002: Format all 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_strong/unsupported_operators_test.dart
diff --git a/tests/language_strong/unsupported_operators_test.dart b/tests/language_strong/unsupported_operators_test.dart
index d5ba5ebae93c9637b06ae9c2a800a74d508dc669..e9add7ba5d29b89baed3a5f8613b62c4b843fd70 100644
--- a/tests/language_strong/unsupported_operators_test.dart
+++ b/tests/language_strong/unsupported_operators_test.dart
@@ -10,10 +10,10 @@ class C {
m() {
print(
super === //# 01: compile-time error
- null);
+ null);
print(
super !== //# 02: compile-time error
- null);
+ null);
}
}
@@ -22,8 +22,8 @@ void main() {
new C().m();
print(
"foo" === //# 03: compile-time error
- null);
+ null);
print(
"foo" !== //# 04: compile-time error
- null);
-}
+ null);
+}

Powered by Google App Engine
This is Rietveld 408576698