Flowdock
method

scalar

Importance_0
v1_9_3_392 - Show latest stable - 0 notes - Class: YAMLEvents
scalar(value, anchor, tag, plain, quoted, style) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.