propane/lib/imbecile/lexer.rb

14 lines
178 B
Ruby

module Imbecile
class Lexer
# @return [DFA]
# Lexer DFA.
attr_accessor :dfa
def initialize(grammar)
@dfa = DFA.new(grammar.tokens)
end
end
end