handle no value after /
This commit is contained in:
parent
562a9da820
commit
b440258027
@ -599,6 +599,9 @@ impl Value {
|
||||
}
|
||||
'/' => {
|
||||
toks.next();
|
||||
if toks.peek().is_none() {
|
||||
return Err("Expected expression.".into());
|
||||
}
|
||||
if '*' == toks.peek().unwrap().kind {
|
||||
toks.next();
|
||||
eat_comment(toks, &Scope::new(), &Selector::new())?;
|
||||
|
@ -53,3 +53,7 @@ error!(
|
||||
"a{l {color: foo;}}", "Error: expected selector."
|
||||
);
|
||||
error!(backtick_in_selector, "a`{}", "Error: expected selector.");
|
||||
error!(
|
||||
no_value_after_forward_slash,
|
||||
"a {color: 303/;}", "Error: Expected expression."
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user