We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e51654b commit 841a217Copy full SHA for 841a217
src/translator/match_pattern.rs
@@ -16,8 +16,8 @@ impl AST {
16
Pattern::Any => AST::Any,
17
Pattern::Set(hash_set) => AST::Set(hash_set.clone()),
18
Pattern::Attributes(hash_set) => AST::from_attributes(hash_set, ctx),
19
- Pattern::Group(vec) => AST::NotImplemented,
20
- Pattern::Negate(pattern) => AST::NotImplemented,
+ Pattern::Group(_vec) => AST::NotImplemented,
+ Pattern::Negate(_pattern) => AST::NotImplemented,
21
Pattern::Optional(pattern) => AST::Optional(Box::new(AST::from_pattern(pattern, ctx))),
22
Pattern::ZeroOrMore(pattern) => {
23
AST::ZeroOrMore(Box::new(AST::from_pattern(pattern, ctx)))
0 commit comments