Skip to content

Commit f501aeb

Browse files
committed
Remove a debug statement
1 parent af19bba commit f501aeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tokens.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function readLiteral(input: InputStream, endQuote: number, backslashEscapes: boo
5959

6060
function readDoubleDollarLiteral(input: InputStream, tag: string) {
6161
scan: for (;;) {
62-
if (input.next < 0) return console.log("exit at end", input.pos)
62+
if (input.next < 0) return
6363
if (input.next == Ch.Dollar) {
6464
input.advance()
6565
for (let i = 0; i < tag.length; i++) {

0 commit comments

Comments
 (0)