Chromium Code Reviews| 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 54% |
| copy from tests/lib/mirrors/method_mirror_source_line_ending_lf.dart |
| copy to tests/lib/mirrors/method_mirror_location_other.dart |
| index 71a34c82d29a17993417f8641a1bc38e63e5f11f..a0ac4a3395f4e85160d650420ca7af3cab63c3f0 |
| --- 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() {} |
| + |
| + spaceIntentedInOtherFile() {} |
|
gbracha
2014/03/25 21:08:35
Should this be spaceIndentedInOtherFile?
|
| + |
| + tabIntentedInOtherFile() {} |
|
gbracha
2014/03/25 21:08:35
ditto
|