Index: lib/_internal/libraries.dart |
diff --git a/lib/_internal/libraries.dart b/lib/_internal/libraries.dart |
index f6a9ace436f2fffd2008ccb7558e1aee37fd22bf..a705d33b8a8df9d91e5efc0b375b4615ae5ea3b6 100644 |
--- a/lib/_internal/libraries.dart |
+++ b/lib/_internal/libraries.dart |
@@ -25,12 +25,14 @@ const Map<String, LibraryInfo> LIBRARIES = const <LibraryInfo> { |
"builtin": const LibraryInfo( |
"builtin/builtin_runtime.dart", |
category: "Server", |
+ documented: false, |
platforms: VM_PLATFORM), |
// Is moving to pkg directory |
"compiler": const LibraryInfo( |
ahe
2012/08/28 13:18:51
Will dart2js now support a library named dart:comp
dgrove
2012/08/28 15:19:12
I sure hope not. I would suggest that we not inclu
|
"compiler/compiler.dart", |
category: "Tools", |
+ documented: false, |
platforms: 0), |
"core": const LibraryInfo( |
@@ -164,12 +166,6 @@ class LibraryInfo { |
this.documented = true, |
this.platforms = DART2JS_PLATFORM | VM_PLATFORM]); |
- bool isDart2JsLibrary() => (platforms & DART2JS_PLATFORM) != 0; |
- bool isVmLibrary() => (platforms & VM_PLATFORM) != 0; |
- |
- String getDart2JsPath() => |
- dart2jsPath != null ? "lib/$dart2jsPath" : "lib/$path"; |
- |
- String getDart2jsPatchPath() => |
- dart2jsPatchPath != null ? "lib/$dart2jsPatchPath" : null; |
+ bool get isDart2jsLibrary => (platforms & DART2JS_PLATFORM) != 0; |
+ bool get isVmLibrary => (platforms & VM_PLATFORM) != 0; |
} |