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

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

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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
« no previous file with comments | « tests/language/compile_time_constant_b_test.dart ('k') | tests/language/const_list_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Tests that lhs of a compound assignement is executed only once. 4 // Tests that lhs of a compound assignement is executed only once.
5 5
6 6
7 class Indexed { 7 class Indexed {
8 Indexed() : _f = new List(10), count = 0 { 8 Indexed() : _f = new List.fixedLength(10), count = 0 {
9 _f[0] = 100; 9 _f[0] = 100;
10 _f[1] = 200; 10 _f[1] = 200;
11 } 11 }
12 operator [](i) { 12 operator [](i) {
13 count++; 13 count++;
14 return _f; 14 return _f;
15 } 15 }
16 var count; 16 var count;
17 var _f; 17 var _f;
18 } 18 }
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 testIndexed(); 79 testIndexed();
80 testIndexedMore(); 80 testIndexedMore();
81 testIndexedMoreMore(); 81 testIndexedMoreMore();
82 } 82 }
83 } 83 }
84 } 84 }
85 85
86 main() { 86 main() {
87 CompoundAssignmentOperatorTest.testMain(); 87 CompoundAssignmentOperatorTest.testMain();
88 } 88 }
OLDNEW
« no previous file with comments | « tests/language/compile_time_constant_b_test.dart ('k') | tests/language/const_list_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698