module JSON::TruffleRuby::Generator::GeneratorMethods::Symbol

Public Instance Methods

Calls superclass method
# File lib/json/truffle_ruby/generator.rb, line 606
def to_json(state = nil, *args)
  state = State.from_state(state)
  if state.strict?
    name.to_json(state, *args)
  else
    super
  end
end