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

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

Issue 1313323002: Add visitor methods specific to ??= to SemanticSendVisitor. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 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: 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 1f35e802e12a06779ffd7b80e308792077ae4db1..e542d49d2945624e2b259de679d8abb5409b6096 100644
--- a/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
+++ b/pkg/compiler/lib/src/inferrer/inferrer_visitor.dart
@@ -692,6 +692,7 @@ abstract class InferrerVisitor<T, E extends MinimalInferrerEngine<T>>
with SendResolverMixin,
SemanticSendResolvedMixin<T, dynamic>,
CompoundBulkMixin<T, dynamic>,
+ SetIfNullBulkMixin<T, dynamic>,
PrefixBulkMixin<T, dynamic>,
PostfixBulkMixin<T, dynamic>,
ErrorBulkMixin<T, dynamic>,
@@ -773,6 +774,11 @@ abstract class InferrerVisitor<T, E extends MinimalInferrerEngine<T>>
}
@override
+ T bulkHandleSetIfNull(SendSet node, _) {
+ return handleSendSet(node);
+ }
+
+ @override
T bulkHandlePrefix(SendSet node, _) {
return handleSendSet(node);
}
« no previous file with comments | « pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart ('k') | pkg/compiler/lib/src/resolution/access_semantics.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698