class Racc::ActionTable

def shift(i)

def shift(i)
  case i
  when State   then i = i.ident
  when Integer then ;
  else
    raise "racc: fatal: wrong class #{i.class} for shift"
  end
  @shift[i] or raise "racc: fatal: shift action #{i} does not exist"
end