module JSON::TruffleRuby::Generator::GeneratorMethods::Object

def to_json(state = nil, *)

special method #to_json was defined for some object.
it to a JSON string, and returns the result. This is a fallback, if no
Converts this object to a string (calling #to_s), converts
def to_json(state = nil, *)
  if state && State.from_state(state).strict?
    raise GeneratorError, "#{self.class} not allowed in JSON"
  else
    to_s.to_json
  end
end