module GirFFI::Library

Public Instance Methods

find_type(type) click to toggle source
Calls superclass method
# File lib/gir_ffi-base/gir_ffi/library.rb, line 7
def find_type type
  if type.is_a? Module
    if type.const_defined?(:Enum)
      return super type::Enum
    end
  end

  super
end