class Racc::Grammar

def each_useless_nonterminal

def each_useless_nonterminal
  return to_enum __method__ unless block_given?
  @symboltable.each_nonterminal do |sym|
    yield sym if sym.useless?
  end
end