| 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 // Test Parameter Intializer. | 5 // Test Parameter Intializer. |
| 6 | 6 |
| 7 | 7 |
| 8 class ParameterInitializer2Test { | 8 class ParameterInitializer2Test { |
| 9 static testMain() { | 9 static testMain() { |
| 10 var a = new A(123); | 10 var a = new A(123); |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 int y_; | 73 int y_; |
| 74 int w_; | 74 int w_; |
| 75 int z; | 75 int z; |
| 76 int az_; | 76 int az_; |
| 77 } | 77 } |
| 78 | 78 |
| 79 | 79 |
| 80 main() { | 80 main() { |
| 81 ParameterInitializer2Test.testMain(); | 81 ParameterInitializer2Test.testMain(); |
| 82 } | 82 } |
| OLD | NEW |