Fixed ranges and added for loop parser

This commit is contained in:
Tristan Hume
2013-07-29 14:11:47 -04:00
parent 525e1ff195
commit 8ca00982b6
3 changed files with 50 additions and 22 deletions
+3 -1
View File
@@ -7,7 +7,9 @@ module Liquid
':' => :colon,
',' => :comma,
'[' => :open_square,
']' => :close_square
']' => :close_square,
'(' => :open_round,
')' => :close_round
}
IDENTIFIER = /[\w\-?!]+/
SINGLE_STRING_LITERAL = /'[^\']*'/