Returns a reference to a State given a pointer to it.
(&self, si: StatePtr)
| 1488 | |
| 1489 | /// Returns a reference to a State given a pointer to it. |
| 1490 | fn state(&self, si: StatePtr) -> &State { |
| 1491 | self.cache.compiled.get_state(si).unwrap() |
| 1492 | } |
| 1493 | |
| 1494 | /// Adds the given state to the DFA. |
| 1495 | /// |
no test coverage detected