compiler_tools/
misc.rs

1/// Used by simple_regex generated code
2pub enum MatchResult {
3    Matched(u32),
4    MatchedEmpty(u32),
5    NoMatch,
6}