tiny simplification

This commit is contained in:
Aleksey Kladov 2019-09-09 13:23:37 +03:00
parent 734a43e95a
commit 7910202ecd
4 changed files with 8 additions and 5 deletions

View file

@ -125,7 +125,7 @@ pub(crate) mod fragments {
let m = p.start();
while !p.at(EOF) {
if p.current() == T![;] {
if p.at(T![;]) {
p.bump();
continue;
}