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

Unified Diff: dart/pkg/compiler/lib/src/ssa/codegen.dart

Issue 719443002: Incremental compilation: set up inheritance. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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: dart/pkg/compiler/lib/src/ssa/codegen.dart
diff --git a/dart/pkg/compiler/lib/src/ssa/codegen.dart b/dart/pkg/compiler/lib/src/ssa/codegen.dart
index fce5372330fa5a595f9723b15dd429d612c0fe95..f38a9e89edc2bf4ef6a5a9a9e5d3415eb421b62a 100644
--- a/dart/pkg/compiler/lib/src/ssa/codegen.dart
+++ b/dart/pkg/compiler/lib/src/ssa/codegen.dart
@@ -1569,6 +1569,10 @@ class SsaCodeGenerator implements HVisitor, HBlockInformationVisitor {
}
Selector getOptimizedSelectorFor(HInvokeDynamic node, Selector selector) {
+ if (compiler.hasIncrementalSupport) {
ahe 2014/11/11 15:40:51 Stephan: please take a look at this. This is to r
+ return new TypedSelector(
+ compiler.typesTask.dynamicType, selector, compiler.world);
+ }
if (node.element != null) {
// Create an artificial type mask to make sure only
// [node.element] will be enqueued. We're not using the receiver
« no previous file with comments | « dart/pkg/compiler/lib/src/js_emitter/old_emitter/emitter.dart ('k') | dart/pkg/dart2js_incremental/lib/library_updater.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698