method
scalar
v1_9_3_125 -
Show latest stable
- Class:
Psych::JSON::YAMLEvents
scalar(value, anchor, tag, plain, quoted, style)public
No documentation available.
# File ext/psych/lib/psych/json/yaml_events.rb, line 20
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