Scanner - Reformatted

This commit is contained in:
Emmanuel BENOîT 2022-12-31 00:29:38 +01:00
parent 1fe96bdbf7
commit 984ba5f600

View file

@ -208,7 +208,7 @@ impl Scanner {
loop { loop {
if self.is_at_end() { if self.is_at_end() {
err_hdl.error(self.line, "unterminated block comment"); err_hdl.error(self.line, "unterminated block comment");
return return;
} }
let cur = self.advance(); let cur = self.advance();