| Index: runtime/vm/flow_graph_builder.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_builder.h (revision 36738)
|
| +++ runtime/vm/flow_graph_builder.h (working copy)
|
| @@ -218,6 +218,8 @@
|
| // Returns address where the constant 'value' is stored or 0 if not found.
|
| static uword FindDoubleConstant(double value);
|
|
|
| + Isolate* isolate() const { return parsed_function()->isolate(); }
|
| +
|
| private:
|
| friend class NestedStatement; // Explicit access to nesting_stack_.
|
|
|
| @@ -449,6 +451,8 @@
|
|
|
| void BuildLetTempExpressions(LetNode* node);
|
|
|
| + Isolate* isolate() const { return owner()->isolate(); }
|
| +
|
| private:
|
| friend class TempLocalScope; // For ReturnDefinition.
|
|
|
|
|