This commit is contained in:
Florian Weingarten
2015-05-14 14:37:18 +00:00
parent 8cf524e91c
commit 3372ca8136
84 changed files with 1069 additions and 908 deletions
+2 -2
View File
@@ -27,7 +27,7 @@ module Liquid
def tokenize
@output = []
while !@ss.eos?
until @ss.eos?
@ss.skip(/\s*/)
tok = case
when t = @ss.scan(COMPARISON_OPERATOR) then [:comparison, t]
@@ -39,7 +39,7 @@ module Liquid
else
c = @ss.getch
if s = SPECIALS[c]
[s,c]
[s, c]
else
raise SyntaxError, "Unexpected character #{c}"
end