(&mut self, behind: bool, negative: bool)
| 181 | } |
| 182 | |
| 183 | fn look(&mut self, behind: bool, negative: bool) -> Result<Node, ParseError> { |
| 184 | let node = self.alternation()?; |
| 185 | self.expect(')')?; |
| 186 | Ok(Node::Look { node: Box::new(node), behind, negative }) |
| 187 | } |
| 188 | |
| 189 | /* Assign the index before the body so order matches paren order. */ |
| 190 | fn named_group(&mut self, name: String) -> Result<Node, ParseError> { |
no test coverage detected