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

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

Issue 10827353: Fix a performance regressions introduced by r10632. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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
Index: lib/compiler/implementation/enqueue.dart
diff --git a/lib/compiler/implementation/enqueue.dart b/lib/compiler/implementation/enqueue.dart
index 0dc6bf8d2a94702db757d6a86d8da619861289b1..f113c304b9f165f8263f6f283c5990e1e9a8204b 100644
--- a/lib/compiler/implementation/enqueue.dart
+++ b/lib/compiler/implementation/enqueue.dart
@@ -169,6 +169,7 @@ class Enqueuer {
}
void processInstantiatedClassMember(Element member) {
+ if (member.isConstructor()) return;
if (universe.generatedCode.containsKey(member)) return;
if (resolvedElements[member] !== null) return;

Powered by Google App Engine
This is Rietveld 408576698