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 7656084 commit f51359fCopy full SHA for f51359f
src/translator/match_pattern.rs
@@ -67,15 +67,15 @@ impl From<&HashSet<Attribute>> for AST {
67
chars.extend(&digits);
68
}
69
Attribute::Letter => chars.extend(&letters),
70
- Attribute::Uppercase => todo!(),
+ Attribute::Uppercase => (), // TODO: implement
71
Attribute::Lowercase => chars.extend(&letters),
72
- Attribute::Punctuation => todo!(),
73
- Attribute::Sign => todo!(),
74
- Attribute::Seqdelimiter => todo!(),
75
- Attribute::Seqbeforechars => todo!(),
76
- Attribute::Seqafterchars => todo!(),
77
- Attribute::Boundary => todo!(),
78
- Attribute::UserDefined(_) => todo!(),
+ Attribute::Punctuation => (), // TODO: implement
+ Attribute::Sign => (), // TODO: implement
+ Attribute::Seqdelimiter => (), // TODO: implement
+ Attribute::Seqbeforechars => (), // TODO: implement
+ Attribute::Seqafterchars => (), // TODO: implement
+ Attribute::Boundary => (), // TODO: implement
+ Attribute::UserDefined(_) => (), // TODO: implement
79
80
81
AST::Set(chars)
0 commit comments