| Index: runtime/vm/flow_graph.h
|
| diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
|
| index 134cc5ac48b1ab20e2880f644afc5983284420e8..7db7dfcbc920fedb72d761bc2de46485504dbc0b 100644
|
| --- a/runtime/vm/flow_graph.h
|
| +++ b/runtime/vm/flow_graph.h
|
| @@ -120,6 +120,9 @@ class FlowGraph : public ZoneAllocated {
|
| intptr_t num_non_copied_params() const {
|
| return num_non_copied_params_;
|
| }
|
| + bool IsIrregexpFunction() const {
|
| + return parsed_function().function().IsIrregexpFunction();
|
| + }
|
|
|
| // Flow graph orders.
|
| const GrowableArray<BlockEntryInstr*>& preorder() const {
|
|
|