| Index: runtime/vm/flow_graph_builder.cc
|
| diff --git a/runtime/vm/flow_graph_builder.cc b/runtime/vm/flow_graph_builder.cc
|
| index 3a3f08706c85e204cc3a03f9fdab0a2cd9d7bf51..321369b7d22c5f34f78e575fd6d024ca9180d27c 100644
|
| --- a/runtime/vm/flow_graph_builder.cc
|
| +++ b/runtime/vm/flow_graph_builder.cc
|
| @@ -2114,6 +2114,12 @@ void EffectGraphVisitor::VisitArgumentListNode(ArgumentListNode* node) {
|
| }
|
|
|
|
|
| +void EffectGraphVisitor::VisitAwaitNode(AwaitNode* node) {
|
| + // Await nodes are temporary during parsing.
|
| + UNREACHABLE();
|
| +}
|
| +
|
| +
|
| intptr_t EffectGraphVisitor::GetCurrentTempLocalIndex() const {
|
| return kFirstLocalSlotFromFp
|
| - owner()->num_stack_locals()
|
|
|