Flowdock
method

dump_typemap

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: WSDL::SOAP::MappingRegistryCreator
dump_typemap(type) private

No documentation

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

Hide source
# File lib/wsdl/soap/mappingRegistryCreator.rb, line 47
  def dump_typemap(type)
    if definedtype = @complextypes[type]
      case definedtype.compoundtype
      when :TYPE_STRUCT
        dump_struct_typemap(definedtype)
      when :TYPE_ARRAY
        dump_array_typemap(definedtype)
      when :TYPE_MAP, :TYPE_EMPTY
        nil
      else
        raise NotImplementedError.new("must not reach here")
      end
    end
  end
Register or log in to add new notes.