| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 library test.class_location; | 5 library test.class_location; |
| 6 | 6 |
| 7 @MirrorsUsed(targets: "test.class_location") |
| 7 import "dart:mirrors"; | 8 import "dart:mirrors"; |
| 8 import "package:expect/expect.dart"; | 9 import "package:expect/expect.dart"; |
| 9 | 10 |
| 10 part 'class_mirror_location_other.dart'; | 11 part 'class_mirror_location_other.dart'; |
| 11 | 12 |
| 12 class ClassInMainFile {} | 13 class ClassInMainFile {} |
| 13 class SpaceIndentedInMainFile {} | 14 class SpaceIndentedInMainFile {} |
| 14 class TabIndentedInMainFile {} | 15 class TabIndentedInMainFile {} |
| 15 | 16 |
| 16 abstract class AbstractClass {} | 17 abstract class AbstractClass {} |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 60 |
| 60 // Another part. | 61 // Another part. |
| 61 expectLocation(reflectClass(ClassInOtherFile), otherSuffix, 7, 1); | 62 expectLocation(reflectClass(ClassInOtherFile), otherSuffix, 7, 1); |
| 62 expectLocation(reflectClass(SpaceIndentedInOtherFile), otherSuffix, 9, 3); | 63 expectLocation(reflectClass(SpaceIndentedInOtherFile), otherSuffix, 9, 3); |
| 63 expectLocation(reflectClass(TabIndentedInOtherFile), otherSuffix, 11, 2); | 64 expectLocation(reflectClass(TabIndentedInOtherFile), otherSuffix, 11, 2); |
| 64 | 65 |
| 65 // Synthetic classes. | 66 // Synthetic classes. |
| 66 Expect.isNull(reflectClass(MA).superclass.location); | 67 Expect.isNull(reflectClass(MA).superclass.location); |
| 67 Expect.isNull((reflect(main) as ClosureMirror).type.location); | 68 Expect.isNull((reflect(main) as ClosureMirror).type.location); |
| 68 } | 69 } |
| OLD | NEW |