-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restore support for
[^ ]
inverted pattern syntax.
- Loading branch information
1 parent
01440d0
commit 93a327b
Showing
3 changed files
with
26 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
peg::parser!( grammar test() for str { | ||
pub rule alphanumeric() = ['a'..='z' | 'A'..='Z' | '0'..='9']* | ||
pub rule inverted_pat() -> &'input str = "(" s:$([^')']*) ")" {s} | ||
}); | ||
|
||
fn main() { | ||
assert!(test::alphanumeric("azAZ09").is_ok()); | ||
assert!(test::alphanumeric("@").is_err()); | ||
|
||
assert_eq!(test::inverted_pat("(asdf)"), Ok("asdf")); | ||
} | ||
|