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 foo(a, [b]) { | 5 foo(a, [b]) {} |
6 } | |
7 | 6 |
8 bar(a, {b}) { | 7 bar(a, {b}) {} |
9 } | |
10 | 8 |
11 class A { | 9 class A { |
12 A(); | 10 A(); |
13 A.test(a, [b]); | 11 A.test(a, [b]); |
14 } | 12 } |
15 | 13 |
16 class B { | 14 class B { |
17 B() | 15 B() |
18 : super.test(b: 1) // //# 01: runtime error | 16 : super.test(b: 1) // //# 01: runtime error |
19 ; | 17 ; |
(...skipping 18 matching lines...) Expand all Loading... |
38 | 36 |
39 main() { | 37 main() { |
40 new A.test(b: 1); // //# 00: runtime error | 38 new A.test(b: 1); // //# 00: runtime error |
41 new B(); | 39 new B(); |
42 new C(); | 40 new C(); |
43 new D.test(b: 1); // //# 03: runtime error | 41 new D.test(b: 1); // //# 03: runtime error |
44 new E(); | 42 new E(); |
45 foo(b: 1); // //# 06: runtime error | 43 foo(b: 1); // //# 06: runtime error |
46 bar(b: 1); // //# 07: runtime error | 44 bar(b: 1); // //# 07: runtime error |
47 } | 45 } |
OLD | NEW |