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

Unified Diff: pkg/compiler/tool/perf.dart

Issue 2868393002: fix checked-mode failure in perf_test (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/tool/perf.dart
diff --git a/pkg/compiler/tool/perf.dart b/pkg/compiler/tool/perf.dart
index 9ce1da91a56191eb680003c7a8f69ddec00bc592..ed6763b8e30c431fcd182e2d826d8e55c44352e9 100644
--- a/pkg/compiler/tool/perf.dart
+++ b/pkg/compiler/tool/perf.dart
@@ -367,7 +367,9 @@ class MyCompiler extends CompilerImpl {
resolutionEnqueuer.applyImpact(computeImpactForLibrary(library));
});
- resolveLibraryMetadata();
+ if (commonElements.mirrorsLibrary != null) {
+ resolveLibraryMetadata();
+ }
reporter.log('Resolving...');
processQueue(resolutionEnqueuer, mainFunction, libraryLoader.libraries);
resolutionEnqueuer.logSummary(reporter.log);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698