diff options
author | Oscar Campbell <oscar@campbell.nu> | 2015-05-31 03:11:44 +0200 |
---|---|---|
committer | Oscar Campbell <oscar@campbell.nu> | 2015-05-31 03:11:44 +0200 |
commit | 4a1e45e3f85c668185971627849e4420c72af767 (patch) | |
tree | 8e6464c1397c036f6185a27966c27efe63a7a29b /compiler/lexer.nim | |
parent | 6a43b0e81721919d864ce053e0c0c624ba8c0127 (diff) | |
download | Nim-4a1e45e3f85c668185971627849e4420c72af767.tar.gz |
Remove forgotten debug echo statement.
Diffstat (limited to 'compiler/lexer.nim')
-rw-r--r-- | compiler/lexer.nim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/lexer.nim b/compiler/lexer.nim index e1615ac36..bc4b46bc9 100644 --- a/compiler/lexer.nim +++ b/compiler/lexer.nim @@ -414,7 +414,6 @@ proc getNumber(L: var TLexer): TToken = # Is there still a literalish char awaiting? Then it's an error! if L.buf[postPos] in literalishCharsNoDot or (L.buf[postPos] == '.' and L.buf[postPos + 1] in {'0'..'9'}): - echo "likely literal error, additionally: '", L.buf[postPos], L.buf[postPos+1], L.buf[postPos+2], L.buf[postPos+3], "', ", postPos lexMessageLitNum(L, errInvalidNumber, startpos) # Third stage, extract actual number L.bufpos = startpos # restore position |