# File lib/sexp.rb, line 114
  def each_sexp
    self.each do |sexp|
      next unless Sexp === sexp

      yield sexp
    end
  end