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

Unified Diff: pkg/compiler/lib/src/inferrer/inferrer_visitor.dart

Issue 1079533002: Handle SendSet and NewExpression through NewResolvedVisitor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix problems with prefix/postfix and erroneous const invocations. Created 5 years, 8 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: pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
diff --git a/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart b/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
index 889827e9b86c4237bcf0e4357cdf187c31c897c9..fe4bfc596b75fd320c67a86b5d8b5c1e43750950 100644
--- a/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
+++ b/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
@@ -703,7 +703,7 @@ abstract class InferrerVisitor
locals = new LocalsHandler<T>(inferrer, types, compiler, node, fieldScope);
}
- T visitSendSet(SendSet node);
+ T handleSendSet(SendSet node);
T visitSuperSend(Send node);
@@ -736,7 +736,7 @@ abstract class InferrerVisitor
return node.visitChildren(this);
}
- T visitNewExpression(NewExpression node) {
+ T handleNewExpression(NewExpression node) {
return node.send.accept(this);
}
« no previous file with comments | « pkg/compiler/lib/src/dart_backend/placeholder_collector.dart ('k') | pkg/compiler/lib/src/inferrer/simple_types_inferrer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698