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

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

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 years, 9 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
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 4
5 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 // Tests that we can call functions through getters. 7 // Tests that we can call functions through getters.
8 8
9 const TOP_LEVEL_CONST = 1; 9 const TOP_LEVEL_CONST = 1;
10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; 10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST;
(...skipping 13 matching lines...) Expand all
24 24
25 static void testTopLevel() { 25 static void testTopLevel() {
26 topLevel = () { 26 topLevel = () {
27 return 2; 27 return 2;
28 }; 28 };
29 Expect.equals(1, TOP_LEVEL_CONST); 29 Expect.equals(1, TOP_LEVEL_CONST);
30 Expect.equals(1, TOP_LEVEL_CONST_REF); 30 Expect.equals(1, TOP_LEVEL_CONST_REF);
31 Expect.equals(2, topLevel()); 31 Expect.equals(2, topLevel());
32 32
33 expectThrowsNoSuchMethod(() { 33 expectThrowsNoSuchMethod(() {
34 TOP_LEVEL_CONST(); /// static type warning 34 TOP_LEVEL_CONST(); //# static type warning
35 }); 35 });
36 expectThrowsNoSuchMethod(() { 36 expectThrowsNoSuchMethod(() {
37 (TOP_LEVEL_CONST)(); // /// static type warning 37 (TOP_LEVEL_CONST)(); // //# static type warning
38 }); 38 });
39 } 39 }
40 40
41 static void testField() { 41 static void testField() {
42 A a = new A(); 42 A a = new A();
43 a.field = () => 42; 43 a.field = () => 42;
44 Expect.equals(42, a.field()); 44 Expect.equals(42, a.field());
45 Expect.equals(42, (a.field)()); 45 Expect.equals(42, (a.field)());
46 46
47 a.field = () => 87; 47 a.field = () => 87;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 get z { _mark('z'); return 2; } 158 get z { _mark('z'); return 2; }
159 159
160 _mark(m) { _order.write(m); return _order.toString(); } 160 _mark(m) { _order.write(m); return _order.toString(); }
161 StringBuffer _order; 161 StringBuffer _order;
162 162
163 } 163 }
164 164
165 main() { 165 main() {
166 CallThroughGetterTest.testMain(); 166 CallThroughGetterTest.testMain();
167 } 167 }
OLDNEW
« no previous file with comments | « tests/language/call_nonexistent_static_test.dart ('k') | tests/language/call_type_literal_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698