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

Unified Diff: tests/corelib/symbol_operator_test.dart

Issue 346603003: Allow #[] and #[]= symbols. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Update status file for dart2dart. Created 6 years, 6 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/corelib.status ('k') | no next file » | 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 13cd8bce67c42dceb8fbcd60d9181610ecfc9007..981f44bedfe8f7838db4115dfc6041ad900d61de 100644
--- a/tests/corelib/symbol_operator_test.dart
+++ b/tests/corelib/symbol_operator_test.dart
@@ -24,8 +24,8 @@ main() {
testSymbol(#>, $>$, ">");
testSymbol(#>=, $>=$, ">=");
testSymbol(#==, new Symbol("=="), "=="); // Can't hit noSuchMethod.
- testSymbol(#[], $[$], "[]"); /// 01: ok
- testSymbol(#[]=, ($[$]=$).lastMember, "[]="); /// 02: ok
+ testSymbol(#[], $[$], "[]");
+ testSymbol(#[]=, ($[$]=$).lastMember, "[]=");
testSymbol(const Symbol("unary-"), -$, "unary-");
testSymbolThrows(">>>"); /// 03: ok
« no previous file with comments | « tests/corelib/corelib.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698