You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if at the end of a file there is d = 10. the lexer returns up to the = as ['identifier', 'd', 10] ['operator', '=', 10] and also doesn't read the period.
need to determine if this is only with integers or with doubles too
fix this so it's also reading the period at the end
if at the end of a file there is
d = 10.the lexer returns up to the=as['identifier', 'd', 10] ['operator', '=', 10]and also doesn't read the period.