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

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

Issue 10829416: Update language tests to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tests/language/cascade_precedence_test.dart ('k') | dart/tests/language/const_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(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 25
26 static get static_field() { result.add(0); return 1; } 26 static get static_field { result.add(0); return 1; }
27 static set static_field(value) { result.add(1); } 27 static set static_field(value) { result.add(1); }
28 } 28 }
29 29
30 30
31 class CompoundAssignmentOperatorTest { 31 class CompoundAssignmentOperatorTest {
32 32
33 static void testIndexed() { 33 static void testIndexed() {
34 Indexed indexed = new Indexed(); 34 Indexed indexed = new Indexed();
35 Expect.equals(0, indexed.count); 35 Expect.equals(0, indexed.count);
36 var tmp = indexed[0]; 36 var tmp = indexed[0];
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 testIndexed(); 81 testIndexed();
82 testIndexedMore(); 82 testIndexedMore();
83 testIndexedMoreMore(); 83 testIndexedMoreMore();
84 } 84 }
85 } 85 }
86 } 86 }
87 87
88 main() { 88 main() {
89 CompoundAssignmentOperatorTest.testMain(); 89 CompoundAssignmentOperatorTest.testMain();
90 } 90 }
OLDNEW
« no previous file with comments | « dart/tests/language/cascade_precedence_test.dart ('k') | dart/tests/language/const_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698