| OLD | NEW |
| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 | 222 |
| 223 function __PROTO__$(...args) { return 12; } /// 56: compile-time error | 223 function __PROTO__$(...args) { return 12; } /// 56: compile-time error |
| 224 G<> t; /// 57: compile-time error | 224 G<> t; /// 57: compile-time error |
| 225 G<null> t; /// 58: compile-time error | 225 G<null> t; /// 58: compile-time error |
| 226 A<void> a = null; /// 59: compile-time error | 226 A<void> a = null; /// 59: compile-time error |
| 227 void v; /// 60: compile-time error | 227 void v; /// 60: compile-time error |
| 228 void v = null; /// 61: compile-time error | 228 void v = null; /// 61: compile-time error |
| 229 print(null is void); /// 62: compile-time error | 229 print(null is void); /// 62: compile-time error |
| 230 new B(); | 230 new B(); |
| 231 | 231 |
| 232 new Bad(); |
| 233 |
| 232 } catch (var ex) { | 234 } catch (var ex) { |
| 233 // Swallowing exceptions. Any error should be a compile-time error | 235 // Swallowing exceptions. Any error should be a compile-time error |
| 234 // which kills the current isolate. | 236 // which kills the current isolate. |
| 235 } | 237 } |
| 236 } | 238 } |
| 239 |
| 240 class Bad { |
| 241 factory Bad<Bad(String type) { return null; } /// 63: compile-time error |
| 242 } |
| OLD | NEW |