| 584 | /// A concatenation of regular expressions. |
| 585 | #[derive(Clone, Debug, Eq, PartialEq)] |
| 586 | pub struct Concat { |
| 587 | /// The span of this concatenation. |
| 588 | pub span: Span, |
| 589 | /// The concatenation regular expressions. |
| 590 | pub asts: Vec<Ast>, |
| 591 | } |
| 592 | |
| 593 | impl Concat { |
| 594 | /// Return this concatenation as an AST. |
no outgoing calls
no test coverage detected