add multiline block comments

This commit is contained in:
Luna 2019-05-31 22:45:23 -03:00
parent bba969922f
commit 756f85d77d
1 changed files with 13 additions and 0 deletions

View File

@ -272,6 +272,19 @@ pub const Scanner = struct {
// consume comments
if (self.match('/')) {
while (self.peek() != '\n' and !self.isAtEnd()) {
_ = self.advance();
}
} else if (self.match('*')) {
// multiline block comments are messier to work with, but
// we can still do it!
while (true) {
if (self.isAtEnd()) break;
// check '*/'
if (self.peek() == '*' and self.peekNext() == '/') {
self.current += 2;
break;
}
_ = self.advance();
}
} else {