| 1190 | /// `(?is:a)`. |
| 1191 | #[derive(Clone, Debug, Eq, PartialEq)] |
| 1192 | pub struct Group { |
| 1193 | /// The span of this group. |
| 1194 | pub span: Span, |
| 1195 | /// The kind of this group. |
| 1196 | pub kind: GroupKind, |
| 1197 | /// The regular expression in this group. |
| 1198 | pub ast: Box<Ast>, |
| 1199 | } |
| 1200 | |
| 1201 | impl Group { |
| 1202 | /// If this group is non-capturing, then this returns the (possibly empty) |
no outgoing calls
no test coverage detected