Submit
Path:
~
/
/
opt
/
alt
/
ruby21
/
lib64
/
ruby
/
2.1.0
/
psych
/
visitors
/
File Content:
depth_first.rb
module Psych module Visitors class DepthFirst < Psych::Visitors::Visitor def initialize block @block = block end private def nary o o.children.each { |x| visit x } @block.call o end alias :visit_Psych_Nodes_Stream :nary alias :visit_Psych_Nodes_Document :nary alias :visit_Psych_Nodes_Sequence :nary alias :visit_Psych_Nodes_Mapping :nary def terminal o @block.call o end alias :visit_Psych_Nodes_Scalar :terminal alias :visit_Psych_Nodes_Alias :terminal end end end
Submit
FILE
FOLDER
Name
Size
Permission
Action
depth_first.rb
596 bytes
0644
emitter.rb
1452 bytes
0644
json_tree.rb
557 bytes
0644
to_ruby.rb
10522 bytes
0644
visitor.rb
329 bytes
0644
yaml_tree.rb
14947 bytes
0644
N4ST4R_ID | Naxtarrr