global

def scan_ancestors

def scan_ancestors
  branch = self
  while (branch = branch.parent)
    yield branch
  end
end