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

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: Add to api and fix type warnings 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
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/method_mirror_location_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {}
« no previous file with comments | « tests/lib/lib.status ('k') | tests/lib/mirrors/method_mirror_location_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698