class Unparser::AST::LocalVariableScope

def local_variables_for_node(needle)

mutant:disable
def local_variables_for_node(needle)
  @items.each do |node, current|
    return current if node.equal?(needle)
  end
  Set.new
end