class GObjectIntrospection::TypeInfo

Public Instance Methods

description() click to toggle source
# File lib/gobject-introspection/type-info.rb, line 23
def description
  tag.description(self)
end
inspect() click to toggle source
Calls superclass method
# File lib/gobject-introspection/type-info.rb, line 27
def inspect
  super.gsub(/>\z/) do
    " tag=#{tag.inspect}>"
  end
end
try_convert(value) click to toggle source
# File lib/gobject-introspection/type-info.rb, line 19
def try_convert(value)
  tag.try_convert(self, value)
end