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

Unified Diff: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/EditorLibraryManager.java

Issue 9704021: Add a top-level node in the Files view to display the SDK libraries. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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: editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/EditorLibraryManager.java
===================================================================
--- editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/EditorLibraryManager.java (revision 5473)
+++ editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/EditorLibraryManager.java (working copy)
@@ -52,6 +52,29 @@
}
/**
+ * Answer the directory containing the library folders. Typically this would be the "dart-sdk/lib"
+ * directory.
+ *
+ * <pre>
+ * install-directory/
+ * dart-sdk/
+ * lib/
+ * core/
+ * core_runtime.dart
+ * core_frog.dart
+ * ... other core files ...
+ * coreimpl/
+ * coreimpl_runtime.dart
+ * ... other coreimpl files ...
+ * dom/
+ * dom.dart
+ * ... other dom files ...
+ * ... other library directories ...
+ * </pre>
+ */
+ public abstract File getLibrariesDir();
+
+ /**
* Answer the original "dart:<libname>" URI for the specified resolved URI or <code>null</code> if
* it does not map to a short URI.
*/
@@ -113,29 +136,6 @@
}
/**
- * Answer the directory containing the library folders. Typically this would be the "dart-sdk/lib"
- * directory.
- *
- * <pre>
- * install-directory/
- * dart-sdk/
- * lib/
- * core/
- * core_runtime.dart
- * core_frog.dart
- * ... other core files ...
- * coreimpl/
- * coreimpl_runtime.dart
- * ... other coreimpl files ...
- * dom/
- * dom.dart
- * ... other dom files ...
- * ... other library directories ...
- * </pre>
- */
- abstract File getLibrariesDir();
-
- /**
* Answer the platform name (DartC = "compiler", VM = "runtime") used when locating platform
* specific library files (e.g. "core_runtime.dart" vs "core.dart").
*/
« no previous file with comments | « no previous file | editor/tools/plugins/com.google.dart.tools.core/src/com/google/dart/tools/core/internal/model/SystemLibraryManagerProvider.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698