1
0
Fork 0
mirror of https://github.com/notwa/lips synced 2024-05-03 10:03:23 -07:00

be smarter about lexing spaces

This commit is contained in:
Connor Olding 2016-04-10 03:26:23 -07:00
parent 311b1e362f
commit b7831b49c3

View File

@ -89,6 +89,10 @@ function Lexer:read_chars(pattern)
return buff
end
function Lexer:read_spaces()
return self:read_chars('[ \t]')
end
function Lexer:read_decimal()
local buff = self:read_chars('%d')
local num = tonumber(buff)
@ -262,7 +266,7 @@ function Lexer:lex_string_naive(yield) -- no escape sequences
end
function Lexer:lex_include(_yield)
self:read_chars('%s')
self:read_spaces()
local fn
self:lex_string_naive(function(tt, tok)
fn = tok
@ -376,6 +380,7 @@ function Lexer:lex(_yield)
self:nextc()
yield('RELLABEL', sign_chr)
else
self:read_spaces()
local n = self:read_number()
if n then
yield('NUM', sign*n)