| Index: runtime/vm/flow_graph_builder.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_builder.h (revision 36573)
|
| +++ runtime/vm/flow_graph_builder.h (working copy)
|
| @@ -9,6 +9,7 @@
|
| #include "platform/globals.h"
|
| #include "vm/allocation.h"
|
| #include "vm/ast.h"
|
| +#include "vm/flow_graph.h"
|
| #include "vm/growable_array.h"
|
| #include "vm/intermediate_language.h"
|
| #include "vm/raw_object.h"
|
| @@ -19,7 +20,6 @@
|
| class Array;
|
| class Class;
|
| class Field;
|
| -class FlowGraph;
|
| class LocalVariable;
|
| class ParsedFunction;
|
| class String;
|
| @@ -129,6 +129,8 @@
|
| Definition* JoinReturns(BlockEntryInstr** exit_block,
|
| Instruction** last_instruction);
|
|
|
| + Isolate* isolate() const { return caller_graph_->isolate(); }
|
| +
|
| FlowGraph* caller_graph_;
|
| Definition* call_;
|
| GrowableArray<Data> exits_;
|
|
|