method

scalar

ruby 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 21
      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