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 int i = 0; | 5 int i = 0; |
6 | 6 |
7 // Tests super calls and constructors. | 7 // Tests super calls and constructors. |
8 main() { | 8 main() { |
9 Sub sub = new Sub(1, 2); | 9 Sub sub = new Sub(1, 2); |
10 Expect.equals(1, sub.x); | 10 Expect.equals(1, sub.x); |
(...skipping 28 matching lines...) Expand all Loading... |
39 var u, v, w; | 39 var u, v, w; |
40 | 40 |
41 Sub(a, b) : super(a, b), this.v = a, this.w = b { | 41 Sub(a, b) : super(a, b), this.v = a, this.w = b { |
42 u = a + b; | 42 u = a + b; |
43 } | 43 } |
44 | 44 |
45 Sub.stat() : super.stat(), this.v = i++, this.w = i++ { | 45 Sub.stat() : super.stat(), this.v = i++, this.w = i++ { |
46 u = i++; | 46 u = i++; |
47 } | 47 } |
48 } | 48 } |
OLD | NEW |