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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated latest tests. Created 7 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 | Annotate | Revision Log
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";
6
5 // Tests that we can call functions through getters. 7 // Tests that we can call functions through getters.
6 8
7 const TOP_LEVEL_CONST = 1; 9 const TOP_LEVEL_CONST = 1;
8 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; 10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST;
9 const TOP_LEVEL_NULL = null; 11 const TOP_LEVEL_NULL = null;
10 12
11 var topLevel; 13 var topLevel;
12 14
13 class CallThroughGetterTest { 15 class CallThroughGetterTest {
14 16
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 get z { _mark('z'); return 2; } 158 get z { _mark('z'); return 2; }
157 159
158 _mark(m) { _order.write(m); return _order.toString(); } 160 _mark(m) { _order.write(m); return _order.toString(); }
159 StringBuffer _order; 161 StringBuffer _order;
160 162
161 } 163 }
162 164
163 main() { 165 main() {
164 CallThroughGetterTest.testMain(); 166 CallThroughGetterTest.testMain();
165 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698