Update lex.rs

This commit is contained in:
Shunsuke Shibayama 2023-09-11 22:55:34 +09:00
parent 21ca95417f
commit 821ea2a252

View file

@ -1094,6 +1094,7 @@ impl Lexer /*<'a>*/ {
}
Interpolation::SingleLine => {
self.interpol_stack.pop();
s.push(c);
let token = self.emit_token(StrInterpRight, &s);
return Ok(token);
}