Perform the next inductive step on this frame and return the next child AST node to visit.
(&self)
| 472 | /// Perform the next inductive step on this frame and return the next |
| 473 | /// child AST node to visit. |
| 474 | fn child(&self) -> &'a Ast { |
| 475 | match *self { |
| 476 | Frame::Repetition(rep) => &rep.ast, |
| 477 | Frame::Group(group) => &group.ast, |
| 478 | Frame::Concat { head, .. } => head, |
| 479 | Frame::Alternation { head, .. } => head, |
| 480 | } |
| 481 | } |
| 482 | } |
| 483 | |
| 484 | impl<'a> ClassFrame<'a> { |
no outgoing calls
no test coverage detected