Parse @image-url

This commit is contained in:
Olivier Goffart 2021-01-28 11:23:43 +01:00
parent 48b226c017
commit 5debc08f98
4 changed files with 68 additions and 12 deletions

View file

@ -197,6 +197,7 @@ fn fill_token_vec(stream: impl Iterator<Item = TokenTree>, vec: &mut Vec<parser:
SyntaxKind::Error
}
'$' => SyntaxKind::Dollar,
'@' => SyntaxKind::At,
_ => SyntaxKind::Error,
};
prev_spacing = p.spacing();