Skip to content

Commit

Permalink
Remove a debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
marijnh committed Aug 11, 2024
1 parent af19bba commit f501aeb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function readLiteral(input: InputStream, endQuote: number, backslashEscapes: boo

function readDoubleDollarLiteral(input: InputStream, tag: string) {
scan: for (;;) {
if (input.next < 0) return console.log("exit at end", input.pos)
if (input.next < 0) return
if (input.next == Ch.Dollar) {
input.advance()
for (let i = 0; i < tag.length; i++) {
Expand Down

0 comments on commit f501aeb

Please sign in to comment.