class Sexp

Public Instance Methods

each_sexp() { |sexp| ... } click to toggle source

REFACTOR: move to sexp.rb

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

    yield sexp
  end
end