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

Unified Diff: sdk/lib/_internal/compiler/implementation/apiimpl.dart

Issue 339563002: Remove scanBuiltinLibraries. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 6 years, 6 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: sdk/lib/_internal/compiler/implementation/apiimpl.dart
diff --git a/sdk/lib/_internal/compiler/implementation/apiimpl.dart b/sdk/lib/_internal/compiler/implementation/apiimpl.dart
index cc14c141ec482f870435d934c564570d329de564..edbe09d08323040c98a3acb7c9cb41793ea40447 100644
--- a/sdk/lib/_internal/compiler/implementation/apiimpl.dart
+++ b/sdk/lib/_internal/compiler/implementation/apiimpl.dart
@@ -140,12 +140,6 @@ class Compiler extends leg.Compiler {
return "lib/$path";
}
- Future<elements.LibraryElement> scanBuiltinLibrary(String path) {
- Uri uri = libraryRoot.resolve(lookupLibraryPath(path));
- Uri canonicalUri = new Uri(scheme: "dart", path: path);
- return libraryLoader.loadLibrary(uri, null, canonicalUri);
- }
-
void log(message) {
handler(null, null, null, message, api.Diagnostic.VERBOSE_INFO);
}

Powered by Google App Engine
This is Rietveld 408576698