lex indents with higher precedence than comments

This commit is contained in:
Jeremy Ashkenas
2009-12-30 21:20:30 -05:00
parent bbbfd92373
commit cae0b1a038

View File

@@ -93,8 +93,8 @@ module CoffeeScript
return if string_token
return if js_token
return if regex_token
return if comment_token
return if indent_token
return if comment_token
return if whitespace_token
return literal_token
end