class Object

Public Instance Methods

tap() { |self| ... } click to toggle source
# File lib/parsing_nesting/grammar.rb, line 9
def tap
  yield(self)
  self
end