| 109 | // byte c, the next state should be s->next_[c]. |
| 110 | struct State { |
| 111 | inline bool IsMatch() const { return (flag_ & kFlagMatch) != 0; } |
| 112 | |
| 113 | int* inst_; // Instruction pointers in the state. |
| 114 | int ninst_; // # of inst_ pointers. |
no outgoing calls
no test coverage detected