remove print debug

This commit is contained in:
Luna 2019-06-01 23:35:13 -03:00
parent 589413488c
commit ec652b29d9
1 changed files with 0 additions and 1 deletions

View File

@ -255,7 +255,6 @@ pub const Scanner = struct {
'>' => self.makeMatchToken('=', .GREATER_EQUAL, .GREATER),
'/' => blk: {
std.debug.warn("next: {}\n", self.peekNext());
if (self.peekNext() == '/') {
while (self.peek() != '\n' and !self.isAtEnd()) {
_ = self.advance();