类 Psych::Visitors::JSONTree

公共类方法

create(options = {}) 点击切换源代码
# File psych/lib/psych/visitors/json_tree.rb, line 9
def self.create options = {}
  emitter = Psych::JSON::TreeBuilder.new
  class_loader = ClassLoader.new
  ss           = ScalarScanner.new class_loader
  new(emitter, ss, options)
end

公共实例方法

accept(target) 点击切换源代码
# File psych/lib/psych/visitors/json_tree.rb, line 16
def accept target
  if target.respond_to?(:encode_with)
    dump_coder target
  else
    send(@dispatch_cache[target.class], target)
  end
end