Index: tests/lib/mirrors/method_mirror_location_test.dart |
diff --git a/tests/lib/mirrors/method_mirror_location_test.dart b/tests/lib/mirrors/method_mirror_location_test.dart |
index 446f313877dbda7266b7bc911a50632d7017ecd1..ace5e4403c0fc075624a8ecacc30da2950094b77 100644 |
--- a/tests/lib/mirrors/method_mirror_location_test.dart |
+++ b/tests/lib/mirrors/method_mirror_location_test.dart |
@@ -59,12 +59,12 @@ main() { |
// Another part. |
expectLocation(reflectClass(ClassInOtherFile).declarations[#ClassInOtherFile], |
- otherSuffix, 9, 3); |
+ otherSuffix, 8, 3); |
expectLocation(reflectClass(ClassInOtherFile).declarations[#method], |
- otherSuffix, 11, 3); |
- expectLocation(reflect(topLevelInOtherFile), otherSuffix, 14, 1); |
- expectLocation(reflect(spaceIdentedInOtherFile), otherSuffix, 16, 3); |
- expectLocation(reflect(tabIdentedInOtherFile), otherSuffix, 18, 2); |
+ otherSuffix, 10, 3); |
+ expectLocation(reflect(topLevelInOtherFile), otherSuffix, 13, 1); |
+ expectLocation(reflect(spaceIdentedInOtherFile), otherSuffix, 15, 3); |
+ expectLocation(reflect(tabIdentedInOtherFile), otherSuffix, 17, 2); |
// Synthetic methods. |
Expect.isNull(reflectClass(HasImplicitConstructor) |