method
visit_Psych_Set
v2_6_3 -
Show latest stable
- Class:
Psych::Visitors::YAMLTree
visit_Psych_Set(o)public
No documentation available.
# File ext/psych/lib/psych/visitors/yaml_tree.rb, line 368
def visit_Psych_Set o
register(o, @emitter.start_mapping(nil, '!set', false, Psych::Nodes::Mapping::BLOCK))
o.each do |k,v|
accept k
accept v
end
@emitter.end_mapping
end