OLD | NEW |
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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 | 6 |
7 // Dart spec 0.03, section 11.10 - generative constructors can only have return | 7 // Dart spec 0.03, section 11.10 - generative constructors can only have return |
8 // statements in the form 'return;'. | 8 // statements in the form 'return;'. |
9 class A { | 9 class A { |
10 int x; | 10 int x; |
11 A(this.x) { return; } | 11 A(this.x) { |
| 12 return; |
| 13 } |
12 A.test1(this.x) { | 14 A.test1(this.x) { |
13 return this; // //# 01: compile-time error | 15 return this; // //# 01: compile-time error |
14 } | 16 } |
15 A.test2(this.x) { | 17 A.test2(this.x) { |
16 return null; // //# 02: compile-time error | 18 return null; // //# 02: compile-time error |
17 } | 19 } |
18 int foo(int y) => x + y; | 20 int foo(int y) => x + y; |
19 } | 21 } |
20 | 22 |
21 class B { | 23 class B { |
(...skipping 11 matching lines...) Expand all Loading... |
33 } | 35 } |
34 | 36 |
35 main() { | 37 main() { |
36 Expect.equals((new A(1)).foo(10), 11); | 38 Expect.equals((new A(1)).foo(10), 11); |
37 Expect.equals((new A.test1(1)).foo(10), 11); | 39 Expect.equals((new A.test1(1)).foo(10), 11); |
38 Expect.equals((new A.test2(1)).foo(10), 11); | 40 Expect.equals((new A.test2(1)).foo(10), 11); |
39 new B(); | 41 new B(); |
40 new C(); | 42 new C(); |
41 new D(); | 43 new D(); |
42 } | 44 } |
OLD | NEW |