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

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

Issue 10837359: Language tests updated to use const instead of final. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 years, 3 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/script_source.dart ('k') | tests/language/static_top_level_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Dart test program for testing setting/getting/initializing static fields. 4 // Dart test program for testing setting/getting/initializing static fields.
5 5
6 class First { 6 class First {
7 First() {} 7 First() {}
8 static var a; 8 static var a;
9 static var b; 9 static var b;
10 static final int c = 1; 10 static const int c = 1;
11 static setValues() { 11 static setValues() {
12 a = 24; 12 a = 24;
13 b = 10; 13 b = 10;
14 return a + b + c; 14 return a + b + c;
15 } 15 }
16 } 16 }
17 17
18 18
19 class InitializerTest { 19 class InitializerTest {
20 static var one; 20 static var one;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 } 61 }
62 } 62 }
63 63
64 64
65 class StaticField1RunNegativeTest { 65 class StaticField1RunNegativeTest {
66 static /// 01: static type warning, runtime error 66 static /// 01: static type warning, runtime error
67 var x; 67 var x;
68 testMain() { 68 testMain() {
69 var foo = new StaticField1RunNegativeTest(); 69 var foo = new StaticField1RunNegativeTest();
70 print(x); // Used to compile 'x' and force any errors. 70 print(x); // Used to compile 'x' and force any errors.
71 var result = foo.x; 71 var result = foo.x;
72 } 72 }
73 } 73 }
74 74
75 class StaticField1aRunNegativeTest { 75 class StaticField1aRunNegativeTest {
76 static /// 02: static type warning, runtime error 76 static /// 02: static type warning, runtime error
77 void m() {} 77 void m() {}
78 78
79 testMain() { 79 testMain() {
80 var foo = new StaticField1aRunNegativeTest(); 80 var foo = new StaticField1aRunNegativeTest();
81 print(m); // Used to compile 'm' and force any errors. 81 print(m); // Used to compile 'm' and force any errors.
82 var result = foo.m; 82 var result = foo.m;
83 } 83 }
84 } 84 }
85 85
86 class StaticField2RunNegativeTest { 86 class StaticField2RunNegativeTest {
87 static /// 03: static type warning, runtime error 87 static /// 03: static type warning, runtime error
88 var x; 88 var x;
89 89
90 testMain() { 90 testMain() {
91 var foo = new StaticField2RunNegativeTest(); 91 var foo = new StaticField2RunNegativeTest();
92 print(x); // Used to compile 'x' and force any errors. 92 print(x); // Used to compile 'x' and force any errors.
93 foo.x = 1; 93 foo.x = 1;
94 } 94 }
95 } 95 }
96 96
97 class StaticField2aRunNegativeTest { 97 class StaticField2aRunNegativeTest {
98 static /// 04: static type warning, runtime error 98 static /// 04: static type warning, runtime error
99 void m() {} 99 void m() {}
100 100
101 testMain() { 101 testMain() {
102 var foo = new StaticField2aRunNegativeTest(); 102 var foo = new StaticField2aRunNegativeTest();
103 print(m); // Used to compile 'm' and force any errors. 103 print(m); // Used to compile 'm' and force any errors.
104 foo.m = 1; /// 04:continued 104 foo.m = 1; /// 04:continued
105 } 105 }
106 } 106 }
107 107
108 main() { 108 main() {
109 StaticFieldTest.testMain(); 109 StaticFieldTest.testMain();
110 InitializerTest.testStaticFieldInitialization(); 110 InitializerTest.testStaticFieldInitialization();
111 new StaticField1RunNegativeTest().testMain(); 111 new StaticField1RunNegativeTest().testMain();
112 new StaticField1aRunNegativeTest().testMain(); 112 new StaticField1aRunNegativeTest().testMain();
113 new StaticField2RunNegativeTest().testMain(); 113 new StaticField2RunNegativeTest().testMain();
114 new StaticField2aRunNegativeTest().testMain(); 114 new StaticField2aRunNegativeTest().testMain();
115 } 115 }
OLDNEW
« no previous file with comments | « tests/language/script_source.dart ('k') | tests/language/static_top_level_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698