class Mime::NullType

def method_missing(method, *args)

def method_missing(method, *args)
  false if method.end_with?("?")
end

def nil?

def nil?
  true
end

def ref; end

def ref; end

def respond_to_missing?(method, _)

def respond_to_missing?(method, _)
  method.end_with?("?")
end

def to_s

def to_s
  ""
end