Faster token creation, hopefully.

This commit is contained in:
Tristan Hume
2013-07-29 10:23:04 -04:00
parent a892e69a88
commit 8dcf44e99d
2 changed files with 21 additions and 24 deletions
+11 -14
View File
@@ -2,12 +2,9 @@ require "strscan"
module Liquid module Liquid
class Token class Token
attr_accessor :type, :contents attr_accessor :type, :contents
def initialize(*args) def initialize(type, contents = nil)
@type, @contents = args @type = type
end @contents = contents
def self.[](*args)
Token.new(*args)
end end
def inspect def inspect
@@ -52,7 +49,7 @@ module Liquid
loop do loop do
tok = next_token tok = next_token
unless tok unless tok
@output << Token[:end_of_string] @output << Token.new(:end_of_string)
return @output return @output
end end
@output << tok @output << tok
@@ -64,12 +61,12 @@ module Liquid
return if @ss.eos? return if @ss.eos?
case case
when t = @ss.scan(COMPARISON_OPERATOR) then Token[:comparison, t] when t = @ss.scan(COMPARISON_OPERATOR) then Token.new(:comparison, t)
when t = @ss.scan(SINGLE_STRING_LITERAL) then Token[:string, t] when t = @ss.scan(SINGLE_STRING_LITERAL) then Token.new(:string, t)
when t = @ss.scan(DOUBLE_STRING_LITERAL) then Token[:string, t] when t = @ss.scan(DOUBLE_STRING_LITERAL) then Token.new(:string, t)
when t = @ss.scan(FLOAT_LITERAL) then Token[:float, t] when t = @ss.scan(FLOAT_LITERAL) then Token.new(:float, t)
when t = @ss.scan(INTEGER_LITERAL) then Token[:integer, t] when t = @ss.scan(INTEGER_LITERAL) then Token.new(:integer, t)
when t = @ss.scan(IDENTIFIER) then Token[:id, t] when t = @ss.scan(IDENTIFIER) then Token.new(:id, t)
else else
lex_specials lex_specials
end end
@@ -79,7 +76,7 @@ module Liquid
def lex_specials def lex_specials
c = @ss.getch c = @ss.getch
if s = SPECIALS[c] if s = SPECIALS[c]
return Token[s,c] return Token.new(s,c)
end end
raise SyntaxError, "Unexpected character #{c}." raise SyntaxError, "Unexpected character #{c}."
+10 -10
View File
@@ -5,39 +5,39 @@ class LexerTest < Test::Unit::TestCase
def test_strings def test_strings
tokens = Lexer.new(%! 'this is a test""' "wat 'lol'"!).tokenize tokens = Lexer.new(%! 'this is a test""' "wat 'lol'"!).tokenize
assert_equal [Token[:string,%!'this is a test""'!], Token[:string, %!"wat 'lol'"!], Token[:end_of_string]], tokens assert_equal [Token.new(:string,%!'this is a test""'!), Token.new(:string, %!"wat 'lol'"!), Token.new(:end_of_string)], tokens
end end
def test_integer def test_integer
tokens = Lexer.new('hi 50').tokenize tokens = Lexer.new('hi 50').tokenize
assert_equal [Token[:id,'hi'], Token[:integer, '50'], Token[:end_of_string]], tokens assert_equal [Token.new(:id,'hi'), Token.new(:integer, '50'), Token.new(:end_of_string)], tokens
end end
def test_float def test_float
tokens = Lexer.new('hi 5.0').tokenize tokens = Lexer.new('hi 5.0').tokenize
assert_equal [Token[:id,'hi'], Token[:float, '5.0'], Token[:end_of_string]], tokens assert_equal [Token.new(:id,'hi'), Token.new(:float, '5.0'), Token.new(:end_of_string)], tokens
end end
def test_comparison def test_comparison
tokens = Lexer.new('== <> contains').tokenize tokens = Lexer.new('== <> contains').tokenize
assert_equal [Token[:comparison,'=='], Token[:comparison, '<>'], Token[:comparison, 'contains'], Token[:end_of_string]], tokens assert_equal [Token.new(:comparison,'=='), Token.new(:comparison, '<>'), Token.new(:comparison, 'contains'), Token.new(:end_of_string)], tokens
end end
def test_specials def test_specials
tokens = Lexer.new('| .:').tokenize tokens = Lexer.new('| .:').tokenize
assert_equal [Token[:pipe, '|'], Token[:dot, '.'], Token[:colon, ':'], Token[:end_of_string]], tokens assert_equal [Token.new(:pipe, '|'), Token.new(:dot, '.'), Token.new(:colon, ':'), Token.new(:end_of_string)], tokens
tokens = Lexer.new('[,]').tokenize tokens = Lexer.new('[,]').tokenize
assert_equal [Token[:open_square, '['], Token[:comma, ','], Token[:close_square, ']'], Token[:end_of_string]], tokens assert_equal [Token.new(:open_square, '['), Token.new(:comma, ','), Token.new(:close_square, ']'), Token.new(:end_of_string)], tokens
end end
def test_fancy_identifiers def test_fancy_identifiers
tokens = Lexer.new('hi! five?').tokenize tokens = Lexer.new('hi! five?').tokenize
assert_equal [Token[:id,'hi!'], Token[:id, 'five?'], Token[:end_of_string]], tokens assert_equal [Token.new(:id,'hi!'), Token.new(:id, 'five?'), Token.new(:end_of_string)], tokens
end end
def test_whitespace def test_whitespace
tokens = Lexer.new("five|\n\t ==").tokenize tokens = Lexer.new("five|\n\t ==").tokenize
assert_equal [Token[:id,'five'], Token[:pipe, '|'], Token[:comparison, '=='], Token[:end_of_string]], tokens assert_equal [Token.new(:id,'five'), Token.new(:pipe, '|'), Token.new(:comparison, '=='), Token.new(:end_of_string)], tokens
end end
def test_unexpected_character def test_unexpected_character
@@ -48,8 +48,8 @@ class LexerTest < Test::Unit::TestCase
def test_next_token def test_next_token
l = Lexer.new('hi 5.0') l = Lexer.new('hi 5.0')
assert_equal Token[:id, 'hi'], l.next_token assert_equal Token.new(:id, 'hi'), l.next_token
assert_equal Token[:float, '5.0'], l.next_token assert_equal Token.new(:float, '5.0'), l.next_token
assert_nil l.next_token assert_nil l.next_token
end end
end end