class RSpec::Core::Source::Node

def each(&block)

def each(&block)
  return to_enum(__method__) unless block_given?
  yield self
  children.each do |child|
    child.each(&block)
  end
end