MCPcopy Create free account
hub / github.com/davidblewett/rure-python / CaptureName

Class CaptureName

regex/regex-syntax/src/ast/mod.rs:1247–1254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1245/// `(?P<foo>expr)`.
1246#[derive(Clone, Debug, Eq, PartialEq)]
1247pub struct CaptureName {
1248 /// The span of this capture name.
1249 pub span: Span,
1250 /// The capture name.
1251 pub name: String,
1252 /// The capture index.
1253 pub index: u32,
1254}
1255
1256/// A group of flags that is not applied to a particular regular expression.
1257#[derive(Clone, Debug, Eq, PartialEq)]

Callers 1

parse_groupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected