| Index: runtime/vm/flow_graph_builder.h
|
| diff --git a/runtime/vm/flow_graph_builder.h b/runtime/vm/flow_graph_builder.h
|
| index 41bd751a02de2d900d50e2092ec9eb7c26ca43ad..94c9444fda7ad756dd179cf1025f3db972977316 100644
|
| --- a/runtime/vm/flow_graph_builder.h
|
| +++ b/runtime/vm/flow_graph_builder.h
|
| @@ -396,11 +396,13 @@ class EffectGraphVisitor : public AstNodeVisitor {
|
| void BuildConstructorCall(ConstructorCallNode* node,
|
| PushArgumentInstr* alloc_value);
|
|
|
| - void BuildSaveContext(const LocalVariable& variable);
|
| - void BuildRestoreContext(const LocalVariable& variable);
|
| + void BuildSaveContext(const LocalVariable& variable,
|
| + intptr_t token_pos);
|
| + void BuildRestoreContext(const LocalVariable& variable,
|
| + intptr_t token_pos);
|
|
|
| - Definition* BuildStoreContext(Value* value);
|
| - Definition* BuildCurrentContext();
|
| + Definition* BuildStoreContext(Value* value, intptr_t token_pos);
|
| + Definition* BuildCurrentContext(intptr_t token_pos);
|
|
|
| void BuildThrowNode(ThrowNode* node);
|
|
|
|
|