class Psych::Visitors::DepthFirst
Öffentliche Klassenmethoden
Source
# File ext/psych/lib/psych/visitors/depth_first.rb, line 5 def initialize block @block = block end
Private Instanzmethoden
Source
# File ext/psych/lib/psych/visitors/depth_first.rb, line 11 def nary o o.children.each { |x| visit x } @block.call o end
Source
# File ext/psych/lib/psych/visitors/depth_first.rb, line 20 def terminal o @block.call o end
Auch aliased als: visit_Psych_Nodes_Scalar, visit_Psych_Nodes_Alias