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

Unified Diff: tests/corelib/symbol_operator_test.dart

Issue 2770063002: Revert "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
« no previous file with comments | « tests/corelib/num_parse_test.dart ('k') | tests/corelib_strong/big_integer_arith_vm_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/corelib/symbol_operator_test.dart
diff --git a/tests/corelib/symbol_operator_test.dart b/tests/corelib/symbol_operator_test.dart
index 1899f6fbce30862e9ea42dbcdfaa53b3fb925388..753aec5c12713633a4b6cddda3599e5733e2f0aa 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";
}
}
« no previous file with comments | « tests/corelib/num_parse_test.dart ('k') | tests/corelib_strong/big_integer_arith_vm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698