| 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 | 6 |
| 7 class Indexed { | 7 class Indexed { |
| 8 Indexed() : _f = new List(10), count = 0 { | 8 Indexed() : _f = new List(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 } |
| 19 | 19 |
| 20 var result; | 20 var result; |
| 21 | 21 |
| 22 class A { | 22 class A { |
| 23 get field() { result.add(1); return 1; } | 23 get field() { result.add(1); return 1; } |
| 24 set field(value) {} | 24 set field(value) {} |
| 25 |
| 26 static get static_field() { result.add(0); return 1; } |
| 27 static set static_field(value) { result.add(1); } |
| 25 } | 28 } |
| 26 | 29 |
| 27 | 30 |
| 28 class CompoundAssignmentOperatorTest { | 31 class CompoundAssignmentOperatorTest { |
| 29 | 32 |
| 30 static void testIndexed() { | 33 static void testIndexed() { |
| 31 Indexed indexed = new Indexed(); | 34 Indexed indexed = new Indexed(); |
| 32 Expect.equals(0, indexed.count); | 35 Expect.equals(0, indexed.count); |
| 33 var tmp = indexed[0]; | 36 var tmp = indexed[0]; |
| 34 Expect.equals(1, indexed.count); | 37 Expect.equals(1, indexed.count); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 59 } | 62 } |
| 60 | 63 |
| 61 static testIndexedMoreMore() { | 64 static testIndexedMoreMore() { |
| 62 result = []; | 65 result = []; |
| 63 middle() { result.add(2); } | 66 middle() { result.add(2); } |
| 64 obj() { result.add(0); return new A(); } | 67 obj() { result.add(0); return new A(); } |
| 65 sequence(a, b, c) { result.add(3); } | 68 sequence(a, b, c) { result.add(3); } |
| 66 | 69 |
| 67 sequence(obj().field += 1, middle(), obj().field += 1); | 70 sequence(obj().field += 1, middle(), obj().field += 1); |
| 68 Expect.listEquals([0, 1, 2, 0, 1, 3], result); | 71 Expect.listEquals([0, 1, 2, 0, 1, 3], result); |
| 72 |
| 73 result = []; |
| 74 sequence(A.static_field++, middle(), A.static_field++); |
| 75 Expect.listEquals([0, 1, 2, 0, 1, 3], result); |
| 69 } | 76 } |
| 70 | 77 |
| 71 | 78 |
| 72 static void testMain() { | 79 static void testMain() { |
| 73 testIndexed(); | 80 for (int i = 0; i < 1000; i++) { |
| 74 testIndexedMore(); | 81 testIndexed(); |
| 75 testIndexedMoreMore(); | 82 testIndexedMore(); |
| 83 testIndexedMoreMore(); |
| 84 } |
| 76 } | 85 } |
| 77 } | 86 } |
| 78 | 87 |
| 79 main() { | 88 main() { |
| 80 CompoundAssignmentOperatorTest.testMain(); | 89 CompoundAssignmentOperatorTest.testMain(); |
| 81 } | 90 } |
| OLD | NEW |