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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 if (!(fisk futureOf(false))) {} //# 50: compile-time error | 213 if (!(fisk futureOf(false))) {} //# 50: compile-time error |
214 if (!(await futureOf(false))) {} //# 51: compile-time error | 214 if (!(await futureOf(false))) {} //# 51: compile-time error |
215 | 215 |
216 void f{} //# 52: compile-time error | 216 void f{} //# 52: compile-time error |
217 G<int double> g; //# 53: compile-time error | 217 G<int double> g; //# 53: compile-time error |
218 f(void) {}; //# 54: compile-time error | 218 f(void) {}; //# 54: compile-time error |
219 | 219 |
220 optionalArg([x]) {} | 220 optionalArg([x]) {} |
221 optionalArg( | 221 optionalArg( |
222 void (var i) {} //# 55: compile-time error | 222 void (var i) {} //# 55: compile-time error |
223 ); | 223 ); |
224 | 224 |
225 function __PROTO__$(...args) { return 12; } //# 56: compile-time error | 225 function __PROTO__$(...args) { return 12; } //# 56: compile-time error |
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 A(); | 232 new A(); |
233 new B(); | 233 new B(); |
(...skipping 12 matching lines...) Expand all Loading... |
246 } | 246 } |
247 | 247 |
248 class Bad { | 248 class Bad { |
249 factory Bad<Bad(String type) { return null; } //# 63: compile-time error | 249 factory Bad<Bad(String type) { return null; } //# 63: compile-time error |
250 } | 250 } |
251 | 251 |
252 class C { | 252 class C { |
253 void f; // //# 66: compile-time error | 253 void f; // //# 66: compile-time error |
254 static void g; // //# 67: compile-time error | 254 static void g; // //# 67: compile-time error |
255 } | 255 } |
256 | |
OLD | NEW |