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

Unified Diff: dart/lib/compiler/implementation/compiler.dart

Issue 10831369: Fix dart2js_mirror breakage. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
« no previous file with comments | « no previous file | dart/pkg/dartdoc/mirrors/dart2js_mirror.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/compiler.dart
diff --git a/dart/lib/compiler/implementation/compiler.dart b/dart/lib/compiler/implementation/compiler.dart
index ad28ba8d69fd5c74d0ff334f195997d75a12c31b..02bdebe1cdeedb7544de193cb0afd26726f0a8f7 100644
--- a/dart/lib/compiler/implementation/compiler.dart
+++ b/dart/lib/compiler/implementation/compiler.dart
@@ -375,11 +375,9 @@ class Compiler implements DiagnosticListener {
}
void patchDartLibrary(LibraryElement library, String dartLibraryPath) {
- print("[Patching; $library ($dartLibraryPath)");
if (library.isPatched) return;
Uri patchUri = resolvePatchUri(dartLibraryPath);
if (patchUri !== null) {
- print("[... loading patch ...]");
patchParser.patchLibrary(patchUri, library);
// We allow foreign functions in patched libraries.
addForeignFunctions(library); // Is safe even if already added.
« no previous file with comments | « no previous file | dart/pkg/dartdoc/mirrors/dart2js_mirror.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698