Parse mid-line comments (#2800)

This commit is contained in:
Jonathan Turner 2020-12-19 11:23:02 +13:00 committed by GitHub
parent 57a2d695e2
commit 8509873043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -280,10 +280,11 @@ pub fn bare(src: &mut Input, span_offset: usize) -> (Spanned<String>, Option<Par
}
fn skip_comment(input: &mut Input) {
for (_, c) in input {
if c == '\n' || c == '\r' {
while let Some((_, c)) = input.peek() {
if *c == '\n' || *c == '\r' {
break;
}
input.next();
}
}