Class: GObjectIntrospection::TypeInfo

Inherits:
Object
  • Object
show all
Defined in:
lib/gobject-introspection/type-info.rb

Instance Method Summary collapse

Instance Method Details

#descriptionObject



23
24
25
# File 'lib/gobject-introspection/type-info.rb', line 23

def description
  tag.description(self)
end

#inspectObject



27
28
29
30
31
# File 'lib/gobject-introspection/type-info.rb', line 27

def inspect
  super.gsub(/>\z/) do
    " tag=#{tag.inspect}>"
  end
end

#try_convert(value) ⇒ Object



19
20
21
# File 'lib/gobject-introspection/type-info.rb', line 19

def try_convert(value)
  tag.try_convert(self, value)
end