Skip to content

Commit

Permalink
fix(lex): Remove spurious console.log for REM-prefixed comments (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjbarag authored Jun 17, 2021
1 parent 28bcc90 commit bff9100
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/lexer/Lexer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -672,10 +672,6 @@ export class Lexer {
const commentType: Comment["type"] =
peekPrevious()?.location.start.line === line ? "Line" : "Block";

if (starter === "REM") {
console.log({ start, current });
}

let commentText = "";
while (peek() !== "\n" && !isAtEnd()) {
commentText += advance();
Expand Down

0 comments on commit bff9100

Please sign in to comment.