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

Side by Side Diff: tests/language/syntax_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/switch_fallthru_test.dart ('k') | tests/language/throw1_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 class SyntaxTest { 5 class SyntaxTest {
6 // "this" cannot be used as a field name. 6 // "this" cannot be used as a field name.
7 SyntaxTest this; /// 01: compile-time error 7 SyntaxTest this; /// 01: compile-time error
8 8
9 // Syntax error. 9 // Syntax error.
10 foo {} /// 02: compile-time error 10 foo {} /// 02: compile-time error
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 G<> t; /// 57: compile-time error 226 G<> t; /// 57: compile-time error
227 G<null> t; /// 58: compile-time error 227 G<null> t; /// 58: compile-time error
228 A<void> a = null; /// 59: compile-time error 228 A<void> a = null; /// 59: compile-time error
229 void v; /// 60: compile-time error 229 void v; /// 60: compile-time error
230 void v = null; /// 61: compile-time error 230 void v = null; /// 61: compile-time error
231 print(null is void); /// 62: compile-time error 231 print(null is void); /// 62: compile-time error
232 new B(); 232 new B();
233 233
234 new Bad(); 234 new Bad();
235 235
236 } catch (var ex) { 236 } catch (ex) {
237 // Swallowing exceptions. Any error should be a compile-time error 237 // Swallowing exceptions. Any error should be a compile-time error
238 // which kills the current isolate. 238 // which kills the current isolate.
239 } 239 }
240 } 240 }
241 241
242 class Bad { 242 class Bad {
243 factory Bad<Bad(String type) { return null; } /// 63: compile-time error 243 factory Bad<Bad(String type) { return null; } /// 63: compile-time error
244 } 244 }
OLDNEW
« no previous file with comments | « tests/language/switch_fallthru_test.dart ('k') | tests/language/throw1_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698