Sha256: fca4f80d7eba13c4475014f3b584008c20d15e48323ccf21d4cc961b024d68ab
Contents?: true
Size: 779 Bytes
Versions: 6277
Compression:
Stored size: 779 Bytes
Contents
# frozen_string_literal: true module Psych module JSON module YAMLEvents # :nodoc: def start_document version, tag_directives, implicit super(version, tag_directives, !streaming?) end def end_document implicit_end = !streaming? super(implicit_end) end def start_mapping anchor, tag, implicit, style super(anchor, nil, true, Nodes::Mapping::FLOW) end def start_sequence anchor, tag, implicit, style super(anchor, nil, true, Nodes::Sequence::FLOW) end def scalar value, anchor, tag, plain, quoted, style if "tag:yaml.org,2002:null" == tag super('null', nil, nil, true, false, Nodes::Scalar::PLAIN) else super end end end end end
Version data entries
6,277 entries across 6,274 versions & 27 rubygems