Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1060)

Unified Diff: tests/lib/mirrors/method_mirror_location_other.dart

Issue 211243009: Implement MethodMirror.location in the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698