| Index: runtime/vm/flow_graph.h
|
| diff --git a/runtime/vm/flow_graph.h b/runtime/vm/flow_graph.h
|
| index cab5bbe245cd1ba70fc1508a6a64ec03727eec68..1861ba19bd49cf046f70f082b3c97b51840077f1 100644
|
| --- a/runtime/vm/flow_graph.h
|
| +++ b/runtime/vm/flow_graph.h
|
| @@ -110,6 +110,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 {
|
|
|