metasploit-framework/lib/rkelly/lexeme.rb

19 lines
362 B
Ruby

require 'rkelly/token'
module RKelly
class Lexeme
attr_reader :name, :pattern
def initialize(name, pattern, &block)
@name = name
@pattern = pattern
@block = block
end
def match(string)
match = pattern.match(string)
return Token.new(name, match.to_s, &@block) if match
match
end
end
end