class ActionDispatch::Journey::NFA::TransitionTable

def initialize

def initialize
  @table     = Hash.new { |h,f| h[f] = {} }
  @memos     = {}
  @accepting = nil
  @inverted  = nil
end