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

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

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). 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
« no previous file with comments | « tests/language/call_test.dart ('k') | tests/language/call_through_null_getter_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 4
5 import "package:expect/expect.dart";
6
7 // Tests that we can call functions through getters. 5 // Tests that we can call functions through getters.
8 6
9 const TOP_LEVEL_CONST = 1; 7 const TOP_LEVEL_CONST = 1;
10 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; 8 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST;
11 const TOP_LEVEL_NULL = null; 9 const TOP_LEVEL_NULL = null;
12 10
13 var topLevel; 11 var topLevel;
14 12
15 class CallThroughGetterTest { 13 class CallThroughGetterTest {
16 14
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 get z { _mark('z'); return 2; } 156 get z { _mark('z'); return 2; }
159 157
160 _mark(m) { _order.write(m); return _order.toString(); } 158 _mark(m) { _order.write(m); return _order.toString(); }
161 StringBuffer _order; 159 StringBuffer _order;
162 160
163 } 161 }
164 162
165 main() { 163 main() {
166 CallThroughGetterTest.testMain(); 164 CallThroughGetterTest.testMain();
167 } 165 }
OLDNEW
« no previous file with comments | « tests/language/call_test.dart ('k') | tests/language/call_through_null_getter_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698