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

Unified Diff: tests/language/compound_assignment_operator_test.dart

Issue 10836339: Get rid of the name in HInvokeDynamic (just use the selector instead). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix checked mode. Created 8 years, 4 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 | « lib/compiler/implementation/ssa/tracer.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/compound_assignment_operator_test.dart
diff --git a/tests/language/compound_assignment_operator_test.dart b/tests/language/compound_assignment_operator_test.dart
index 651a9b9c244fa12d7b1d52b7dc4918090156bb0b..e875af19bb5314d82497350ce4c7f4428faa6c66 100644
--- a/tests/language/compound_assignment_operator_test.dart
+++ b/tests/language/compound_assignment_operator_test.dart
@@ -48,8 +48,7 @@ class CompoundAssignmentOperatorTest {
indexed[3][i++] += 1;
Expect.equals(1, i);
}
-
-
+
static testIndexedMore() {
result = [];
array() { result.add(0); return [0]; }
@@ -60,7 +59,7 @@ class CompoundAssignmentOperatorTest {
sequence(array()[index()] += 1, middle(), array()[index()] += 1);
Expect.listEquals([0, 1, 2, 0, 1, 3], result);
}
-
+
static testIndexedMoreMore() {
result = [];
middle() { result.add(2); }
@@ -72,9 +71,8 @@ class CompoundAssignmentOperatorTest {
result = [];
sequence(A.static_field++, middle(), A.static_field++);
- Expect.listEquals([0, 1, 2, 0, 1, 3], result);
+ Expect.listEquals([0, 1, 2, 0, 1, 3], result);
}
-
static void testMain() {
for (int i = 0; i < 1000; i++) {
« no previous file with comments | « lib/compiler/implementation/ssa/tracer.dart ('k') | tests/language/language_dart2js.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698