remove print debug
This commit is contained in:
parent
589413488c
commit
ec652b29d9
1 changed files with 0 additions and 1 deletions
|
@ -255,7 +255,6 @@ pub const Scanner = struct {
|
||||||
'>' => self.makeMatchToken('=', .GREATER_EQUAL, .GREATER),
|
'>' => self.makeMatchToken('=', .GREATER_EQUAL, .GREATER),
|
||||||
|
|
||||||
'/' => blk: {
|
'/' => blk: {
|
||||||
std.debug.warn("next: {}\n", self.peekNext());
|
|
||||||
if (self.peekNext() == '/') {
|
if (self.peekNext() == '/') {
|
||||||
while (self.peek() != '\n' and !self.isAtEnd()) {
|
while (self.peek() != '\n' and !self.isAtEnd()) {
|
||||||
_ = self.advance();
|
_ = self.advance();
|
||||||
|
|
Loading…
Reference in a new issue