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

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

Issue 10854140: Fix type inference for self-recursive functions (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/universe.dart
diff --git a/lib/compiler/implementation/universe.dart b/lib/compiler/implementation/universe.dart
index 1bd48c86fe23a71b5ea5c83e8902a4005a0211da..e75694cff74792e7e6ca466936cb47127c0006de 100644
--- a/lib/compiler/implementation/universe.dart
+++ b/lib/compiler/implementation/universe.dart
@@ -38,6 +38,11 @@ class Universe {
generatedBailoutCode[work.element] = codeBuffer;
}
+ void invalidateCode(Element element) {
ahe 2012/08/14 07:57:56 Please don't add new features to Universe, that is
Søren Gjesse 2012/08/14 08:26:30 Removed this and used eagerRecompile in Enqueuer (
+ generatedCode.remove(element);
+ generatedBailoutCode.remove(element);
+ }
+
bool hasMatchingSelector(Set<Selector> selectors,
Element member,
Compiler compiler) {

Powered by Google App Engine
This is Rietveld 408576698