| OLD | NEW |
| 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 import "package:expect/expect.dart"; | |
| 7 | |
| 8 | 6 |
| 9 class Indexed { | 7 class Indexed { |
| 10 Indexed() : _f = new List(10), count = 0 { | 8 Indexed() : _f = new List(10), count = 0 { |
| 11 _f[0] = 100; | 9 _f[0] = 100; |
| 12 _f[1] = 200; | 10 _f[1] = 200; |
| 13 } | 11 } |
| 14 operator [](i) { | 12 operator [](i) { |
| 15 count++; | 13 count++; |
| 16 return _f; | 14 return _f; |
| 17 } | 15 } |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 testIndexed(); | 79 testIndexed(); |
| 82 testIndexedMore(); | 80 testIndexedMore(); |
| 83 testIndexedMoreMore(); | 81 testIndexedMoreMore(); |
| 84 } | 82 } |
| 85 } | 83 } |
| 86 } | 84 } |
| 87 | 85 |
| 88 main() { | 86 main() { |
| 89 CompoundAssignmentOperatorTest.testMain(); | 87 CompoundAssignmentOperatorTest.testMain(); |
| 90 } | 88 } |
| OLD | NEW |