| 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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 // Tests basic classes and methods. | 7 // Tests basic classes and methods. |
| 8 class ClassTest { | 8 class ClassTest { |
| 9 ClassTest() {} | 9 ClassTest() {} |
| 10 | 10 |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 } | 168 } |
| 169 | 169 |
| 170 Sub() : super(42) { | 170 Sub() : super(42) { |
| 171 y_ = 0; | 171 y_ = 0; |
| 172 } | 172 } |
| 173 } | 173 } |
| 174 | 174 |
| 175 main() { | 175 main() { |
| 176 ClassTest.testMain(); | 176 ClassTest.testMain(); |
| 177 } | 177 } |
| OLD | NEW |