class Unparser::AST::LocalVariableScope

def match(needle)

def match(needle)
  @items.each do |node, current, before|
    return yield(current, before) if node.equal?(needle)
  end
end