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

Unified Diff: pkg/compiler/lib/src/resolution/registry.dart

Issue 1238783003: Handle deferred access as pre-step in SemanticSendVisitor. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated cf. comments. Created 5 years, 5 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/resolution/registry.dart
diff --git a/pkg/compiler/lib/src/resolution/registry.dart b/pkg/compiler/lib/src/resolution/registry.dart
index d71e2952d29ffce6b8df7c2a67fb53b2a0bbf28a..1f3e943158451ecb143e653e593c67c396e0f44e 100644
--- a/pkg/compiler/lib/src/resolution/registry.dart
+++ b/pkg/compiler/lib/src/resolution/registry.dart
@@ -556,6 +556,12 @@ class ResolutionRegistry implements Registry {
mapping.setSendStructure(node, sendStructure);
}
+ // TODO(johnniwinther): Remove this when [SendStructure]s are part of the
+ // [ResolutionResult].
+ SendStructure getSendStructure(Send node) {
+ return mapping.getSendStructure(node);
+ }
+
void registerAsyncMarker(FunctionElement element) {
backend.registerAsyncMarker(element, world, this);
}
« no previous file with comments | « pkg/compiler/lib/src/resolution/members.dart ('k') | pkg/compiler/lib/src/resolution/resolution_result.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698