Index: tests/corelib_strong/symbol_operator_test.dart |
diff --git a/tests/corelib_strong/symbol_operator_test.dart b/tests/corelib_strong/symbol_operator_test.dart |
index 753aec5c12713633a4b6cddda3599e5733e2f0aa..1899f6fbce30862e9ea42dbcdfaa53b3fb925388 100644 |
--- a/tests/corelib_strong/symbol_operator_test.dart |
+++ b/tests/corelib_strong/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"; |
} |
} |