Index: tests/lib/mirrors/method_mirror_location_other.dart |
diff --git a/tests/lib/mirrors/method_mirror_source_line_ending_lf.dart b/tests/lib/mirrors/method_mirror_location_other.dart |
old mode 100755 |
new mode 100644 |
similarity index 55% |
copy from tests/lib/mirrors/method_mirror_source_line_ending_lf.dart |
copy to tests/lib/mirrors/method_mirror_location_other.dart |
index 71a34c82d29a17993417f8641a1bc38e63e5f11f..48ebdb53dff0e4454860c091c791a9416fd1fd0b |
--- a/tests/lib/mirrors/method_mirror_source_line_ending_lf.dart |
+++ b/tests/lib/mirrors/method_mirror_location_other.dart |
@@ -2,15 +2,17 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-// This file is marked executable so source control will preserve the type of |
-// line ending. |
+part of test.method_location; |
-library line_endings.lf; |
+class ClassInOtherFile { |
-oneLineLF(x) => x; |
-multiLineLF(y) { |
- return y + 1; |
-} |
-a |
-(){ |
+ ClassInOtherFile(); |
+ |
+ method() {} |
} |
+ |
+topLevelInOtherFile() {} |
+ |
+ spaceIdentedInOtherFile() {} |
+ |
+ tabIdentedInOtherFile() {} |