| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 // TODO(ahe): This test is sligthly broken but provides temporary test coverage | 5 // TODO(ahe): This test is sligthly broken but provides temporary test coverage |
| 6 // for dart2js. See http://dartbug.com/12464. | 6 // for dart2js. See http://dartbug.com/12464. |
| 7 | 7 |
| 8 library test.mixin_test; | 8 library test.mixin_test; |
| 9 | 9 |
| 10 @MirrorsUsed(targets: 'test.mixin_test, test.model, Object', override: '*') | 10 @MirrorsUsed(targets: 'test.mixin_test, test.model, Object', override: '*') |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 testMixin(); | 297 testMixin(); |
| 298 testMixin2(); | 298 testMixin2(); |
| 299 testMixinApplication(); | 299 testMixinApplication(); |
| 300 testMixinApplicationA(); | 300 testMixinApplicationA(); |
| 301 testUnusedMixinApplication(); | 301 testUnusedMixinApplication(); |
| 302 testSubclass(); | 302 testSubclass(); |
| 303 testSubclass2(); | 303 testSubclass2(); |
| 304 testSubclassA(); | 304 testSubclassA(); |
| 305 testSubclass2A(); | 305 testSubclass2A(); |
| 306 } | 306 } |
| OLD | NEW |