Class: BCMethodEntry
- Inherits:
-
Ent
show all
- Defined in:
- lib/bitclust/ridatabase.rb
Instance Attribute Summary
Attributes inherited from Ent
#entry, #name
Instance Method Summary
collapse
Methods inherited from Ent
#<=>, #==, #hash, #initialize
Constructor Details
This class inherits a constructor from Ent
Instance Method Details
#bitclust? ⇒ Boolean
91
92
93
|
# File 'lib/bitclust/ridatabase.rb', line 91
def bitclust?
true
end
|
99
100
101
|
# File 'lib/bitclust/ridatabase.rb', line 99
def fullname
"#{@entry.klass.name}#{@entry.typemark}#{@name}"
end
|
103
104
105
106
107
108
109
|
# File 'lib/bitclust/ridatabase.rb', line 103
def id
if @entry.defined?
fullname()
else
"#{fullname()}.#{@entry.library.name}"
end
end
|
95
96
97
|
# File 'lib/bitclust/ridatabase.rb', line 95
def inspect
"\#<BitClust #{@name} #{@entry.inspect}>"
end
|