Build out all states in DFA for kind. Returns number of states.
| 1963 | |
| 1964 | // Build out all states in DFA for kind. Returns number of states. |
| 1965 | int Prog::BuildEntireDFA(MatchKind kind, const DFAStateCallback& cb) { |
| 1966 | return GetDFA(kind)->BuildAllStates(cb); |
| 1967 | } |
| 1968 | |
| 1969 | void Prog::TEST_dfa_should_bail_when_slow(bool b) { |
| 1970 | dfa_should_bail_when_slow = b; |