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 10891020: Update almost all tests (except co19) to use the new try-catch syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merge. 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
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 // Tests that we can call functions through getters. 5 // Tests that we can call functions through getters.
6 6
7 const TOP_LEVEL_CONST = 1; 7 const TOP_LEVEL_CONST = 1;
8 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST; 8 const TOP_LEVEL_CONST_REF = TOP_LEVEL_CONST;
9 const TOP_LEVEL_NULL = null; 9 const TOP_LEVEL_NULL = null;
10 10
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 " got: ${exception}"); 114 " got: ${exception}");
115 } 115 }
116 } 116 }
117 117
118 static catchException(fn) { 118 static catchException(fn) {
119 bool caught = false; 119 bool caught = false;
120 var result = null; 120 var result = null;
121 try { 121 try {
122 fn(); 122 fn();
123 Expect.equals(true, false); // Shouldn't reach this. 123 Expect.equals(true, false); // Shouldn't reach this.
124 } catch (var e) { 124 } catch (e) {
125 caught = true; 125 caught = true;
126 result = e; 126 result = e;
127 } 127 }
128 Expect.equals(true, caught); 128 Expect.equals(true, caught);
129 return result; 129 return result;
130 } 130 }
131 131
132 } 132 }
133 133
134 134
(...skipping 21 matching lines...) Expand all
156 get z { _mark('z'); return 2; } 156 get z { _mark('z'); return 2; }
157 157
158 _mark(m) { _order.add(m); return _order.toString(); } 158 _mark(m) { _order.add(m); return _order.toString(); }
159 StringBuffer _order; 159 StringBuffer _order;
160 160
161 } 161 }
162 162
163 main() { 163 main() {
164 CallThroughGetterTest.testMain(); 164 CallThroughGetterTest.testMain();
165 } 165 }
OLDNEW
« no previous file with comments | « tests/language/call_nonexistent_constructor_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