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

Side by Side Diff: tests/language/call_through_null_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
« no previous file with comments | « tests/language/call_through_getter_test.dart ('k') | tests/language/closure3_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 // Tests that we can call functions through getters which return null. 5 // Tests that we can call functions through getters which return null.
6 6
7 const TOP_LEVEL_NULL = null; 7 const TOP_LEVEL_NULL = null;
8 8
9 var topLevel; 9 var topLevel;
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 " got: ${exception}"); 63 " got: ${exception}");
64 } 64 }
65 } 65 }
66 66
67 static catchException(fn) { 67 static catchException(fn) {
68 bool caught = false; 68 bool caught = false;
69 var result = null; 69 var result = null;
70 try { 70 try {
71 fn(); 71 fn();
72 Expect.equals(true, false); // Shouldn't reach this. 72 Expect.equals(true, false); // Shouldn't reach this.
73 } catch (var e) { 73 } catch (e) {
74 caught = true; 74 caught = true;
75 result = e; 75 result = e;
76 } 76 }
77 Expect.equals(true, caught); 77 Expect.equals(true, caught);
78 return result; 78 return result;
79 } 79 }
80 80
81 } 81 }
82 82
83 83
84 class A { 84 class A {
85 85
86 A() { } 86 A() { }
87 var field; 87 var field;
88 get getter { return field; } 88 get getter { return field; }
89 method() { return field; } 89 method() { return field; }
90 90
91 } 91 }
92 92
93 main() { 93 main() {
94 CallThroughNullGetterTest.testMain(); 94 CallThroughNullGetterTest.testMain();
95 } 95 }
OLDNEW
« no previous file with comments | « tests/language/call_through_getter_test.dart ('k') | tests/language/closure3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698