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

Side by Side Diff: tests/language/cascade_precedence_test.dart

Issue 10559064: Migrated cascades tests from dart2js_extra into language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: # Created 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 5
6 class A { 6 class A {
7 int value; 7 int value;
8 A(this.value); 8 A(this.value);
9 void set(int value) { this.value = value; } 9 void set(int value) { this.value = value; }
10 int get() => value; 10 int get() => value;
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 // Should parse as: 128 // Should parse as:
129 // box = (box..x = (a.value == 21 ? b : c)..x.test(117)); 129 // box = (box..x = (a.value == 21 ? b : c)..x.test(117));
130 box = box..x = a.value == 21 ? b : c..x.test(117); 130 box = box..x = a.value == 21 ? b : c..x.test(117);
131 Expect.equals(originalBox, box); 131 Expect.equals(originalBox, box);
132 Expect.equals(box.value, b); 132 Expect.equals(box.value, b);
133 133
134 // New cascades are allowed inside an expressionWithoutCascade if properly 134 // New cascades are allowed inside an expressionWithoutCascade if properly
135 // delimited. 135 // delimited.
136 box..x = (a..set(42)..test(42))..x.test(42); 136 box..x = (a..set(42)..test(42))..x.test(42);
137 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698