We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af19bba commit f501aebCopy full SHA for f501aeb
src/tokens.ts
@@ -59,7 +59,7 @@ function readLiteral(input: InputStream, endQuote: number, backslashEscapes: boo
59
60
function readDoubleDollarLiteral(input: InputStream, tag: string) {
61
scan: for (;;) {
62
- if (input.next < 0) return console.log("exit at end", input.pos)
+ if (input.next < 0) return
63
if (input.next == Ch.Dollar) {
64
input.advance()
65
for (let i = 0; i < tag.length; i++) {
0 commit comments