class Psych::Visitors::DepthFirst

Public Class Methods

new(block) click to toggle source
# File psych/lib/psych/visitors/depth_first.rb, line 5
def initialize block
  @block = block
end

Private Instance Methods

nary(o) click to toggle source
# File psych/lib/psych/visitors/depth_first.rb, line 11
def nary o
  o.children.each { |x| visit x }
  @block.call o
end
terminal(o) click to toggle source
# File psych/lib/psych/visitors/depth_first.rb, line 20
def terminal o
  @block.call o
end
visit_Psych_Nodes_Alias(o)
Alias for: terminal
visit_Psych_Nodes_Document(o)
Alias for: nary
visit_Psych_Nodes_Mapping(o)
Alias for: nary
visit_Psych_Nodes_Scalar(o)
Alias for: terminal
visit_Psych_Nodes_Sequence(o)
Alias for: nary
visit_Psych_Nodes_Stream(o)
Alias for: nary