Returns true if the current configuration demands that an implicit `.*?` be prepended to the instruction sequence.
(&self)
| 126 | /// Returns true if the current configuration demands that an implicit |
| 127 | /// `.*?` be prepended to the instruction sequence. |
| 128 | pub fn needs_dotstar(&self) -> bool { |
| 129 | self.is_dfa && !self.is_reverse && !self.is_anchored_start |
| 130 | } |
| 131 | |
| 132 | /// Returns true if this program uses Byte instructions instead of |
| 133 | /// Char/Range instructions. |
no outgoing calls
no test coverage detected