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

Unified Diff: pkg/analyzer/lib/file_system/file_system.dart

Issue 2286923002: Convert analysis server over to use ContextBuilder (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: address comment, fix bugs, clean-up Created 4 years, 4 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: pkg/analyzer/lib/file_system/file_system.dart
diff --git a/pkg/analyzer/lib/file_system/file_system.dart b/pkg/analyzer/lib/file_system/file_system.dart
index 8fb602568a7166b7fa57ccfb7d08a97963e6641a..f005eefd8c90a9d2b367c3b0e63ebb0769da0d32 100644
--- a/pkg/analyzer/lib/file_system/file_system.dart
+++ b/pkg/analyzer/lib/file_system/file_system.dart
@@ -54,12 +54,6 @@ abstract class File implements Resource {
File renameSync(String newPath);
/**
- * Return a file that refers to the same file as this file, but whose path
- * does not contain any symbolic links.
- */
- File resolveSymbolicLinksSync();
-
- /**
* Synchronously write the given [bytes] to the file. The new content will
* replace any existing content.
*
@@ -183,6 +177,12 @@ abstract class Resource {
bool isOrContains(String path);
/**
+ * Return a resource that refers to the same resource as this resource, but
+ * whose path does not contain any symbolic links.
+ */
+ Resource resolveSymbolicLinksSync();
+
+ /**
* Return a Uri representing this resource.
*/
Uri toUri();
« no previous file with comments | « pkg/analysis_server/test/search/type_hierarchy_test.dart ('k') | pkg/analyzer/lib/file_system/memory_file_system.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698