| 179 | } |
| 180 | |
| 181 | forceinline int |
| 182 | DFA::symbol_max(void) const { |
| 183 | const DFAI* d = static_cast<DFAI*>(object()); |
| 184 | return ((d != nullptr) && (d->n_trans > 0)) ? |
| 185 | d->trans[d->n_trans-1].symbol : Int::Limits::max; |
| 186 | } |
| 187 | |
| 188 | forceinline std::size_t |
| 189 | DFA::hash(void) const { |
no outgoing calls
no test coverage detected