fixup! block attributes

This commit is contained in:
Noah Hellman 2023-01-14 14:50:15 +01:00
parent a1bcc4277d
commit 1586c2947f

View file

@ -117,7 +117,6 @@ impl<I: Iterator<Item = char>> Parser<I> {
match self.state { match self.state {
Start => match c { Start => match c {
'{' => Whitespace, '{' => Whitespace,
c if c.is_whitespace() => Start,
_ => Invalid, _ => Invalid,
}, },
Whitespace => match c { Whitespace => match c {
@ -349,6 +348,7 @@ mod test {
#[test] #[test]
fn valid_invalid() { fn valid_invalid() {
assert_eq!(super::valid(" {.valid}".chars()), 0);
assert_eq!(super::valid("{.class invalid}".chars()), 0); assert_eq!(super::valid("{.class invalid}".chars()), 0);
assert_eq!(super::valid("abc".chars()), 0); assert_eq!(super::valid("abc".chars()), 0);
assert_eq!(super::valid("{.abc.}".chars()), 0); assert_eq!(super::valid("{.abc.}".chars()), 0);