class Sexp

Attributes

line_range[RW]

Public Instance Methods

deep_each_with_self(&block) click to toggle source

same as deep_each, but pass self first

# File lib/temill/parser.rb, line 133
def deep_each_with_self(&block)
  return enum_for(__method__) unless block

  block.call(self)
  deep_each(&block)
end