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

Unified Diff: tests/corelib/symbol_operator_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/corelib/symbol_operator_test.dart
diff --git a/tests/corelib/symbol_operator_test.dart b/tests/corelib/symbol_operator_test.dart
index 753aec5c12713633a4b6cddda3599e5733e2f0aa..1899f6fbce30862e9ea42dbcdfaa53b3fb925388 100644
--- a/tests/corelib/symbol_operator_test.dart
+++ b/tests/corelib/symbol_operator_test.dart
@@ -7,25 +7,25 @@
var $ = new Symbolize();
main() {
- testSymbol(#+, $+$, "+");
- testSymbol(#-, $-$, "-");
- testSymbol(#*, $*$, "*");
- testSymbol(#/, $/$, "/");
- testSymbol(#~/, $~/$, "~/");
- testSymbol(#%, $%$, "%");
- testSymbol(#<<, $<<$, "<<");
- testSymbol(#>>, $>>$, ">>");
+ testSymbol(#+, $ + $, "+");
+ testSymbol(#-, $ - $, "-");
+ testSymbol(#*, $ * $, "*");
+ testSymbol(#/, $ / $, "/");
+ testSymbol(#~/, $ ~/ $, "~/");
+ testSymbol(#%, $ % $, "%");
+ testSymbol(#<<, $ << $, "<<");
+ testSymbol(#>>, $ >> $, ">>");
testSymbol(#~, ~$, "~");
- testSymbol(#|, $|$, "|");
- testSymbol(#&, $&$, "&");
- testSymbol(#^, $^$, "^");
- testSymbol(#<, $<$, "<");
- testSymbol(#<=, $<=$, "<=");
- testSymbol(#>, $>$, ">");
- testSymbol(#>=, $>=$, ">=");
- testSymbol(#==, new Symbol("=="), "=="); // Can't hit noSuchMethod.
+ testSymbol(#|, $ | $, "|");
+ testSymbol(#&, $ & $, "&");
+ testSymbol(#^, $ ^ $, "^");
+ testSymbol(#<, $ < $, "<");
+ testSymbol(#<=, $ <= $, "<=");
+ testSymbol(#>, $ > $, ">");
+ testSymbol(#>=, $ >= $, ">=");
+ testSymbol(#==, new Symbol("=="), "=="); // Can't hit noSuchMethod.
testSymbol(#[], $[$], "[]");
- testSymbol(#[]=, ($[$]=$).lastMember, "[]=");
+ testSymbol(#[]=, ($[$] = $).lastMember, "[]=");
testSymbol(const Symbol("unary-"), -$, "unary-");
testSymbolThrows(">>>"); // //# 03: ok
@@ -48,18 +48,18 @@ void testSymbol(Symbol constSymbol, var mirrorSymbol, String name) {
}
if (mirrorSymbol != dynamicSymbol) {
throw "Not equal \$$name, new Symbol('$name'): "
- "$mirrorSymbol, $dynamicSymbol";
+ "$mirrorSymbol, $dynamicSymbol";
}
if (constSymbol.hashCode != mirrorSymbol.hashCode) {
throw "HashCode not equal #$name, \$$name: $constSymbol, $mirrorSymbol";
}
if (constSymbol.hashCode != dynamicSymbol.hashCode) {
throw "HashCode not equal #$name, new Symbol('$name'): "
- "$constSymbol, $dynamicSymbol";
+ "$constSymbol, $dynamicSymbol";
}
if (mirrorSymbol.hashCode != dynamicSymbol.hashCode) {
throw "HashCode not equal \$$name, new Symbol('$name'): "
- "$mirrorSymbol, $dynamicSymbol";
+ "$mirrorSymbol, $dynamicSymbol";
}
}

Powered by Google App Engine
This is Rietveld 408576698