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

Unified Diff: runtime/vm/flow_graph_builder.h

Issue 1841073003: VM: Fix receiver type propagation in presence of try-catch. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: addressed comments, added test Created 4 years, 9 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: runtime/vm/flow_graph_builder.h
diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
index 474bc4f89d9a1f2f96dc618be8399f9b92d1533c..977df17fc5d73d6125be337ddede705796d68107 100644
--- a/runtime/vm/flow_graph_builder.h
+++ b/runtime/vm/flow_graph_builder.h
@@ -140,6 +140,10 @@ class FlowGraphBuilder : public ValueObject {
void AddCatchEntry(CatchBlockEntryInstr* entry);
+ GraphEntryInstr* graph_entry() const {
+ return graph_entry_;
+ }
+
intptr_t num_copied_params() const {
return num_copied_params_;
}

Powered by Google App Engine
This is Rietveld 408576698