Class: BiteScript::ASM::GenericTypeMirror
- Inherits:
-
Object
- Object
- BiteScript::ASM::GenericTypeMirror
show all
- Defined in:
- lib/bitescript/mirror.rb,
lib/bitescript/asm3/mirror.rb
Instance Method Summary
collapse
Instance Method Details
#array? ⇒ Boolean
509
510
511
|
# File 'lib/bitescript/mirror.rb', line 509
def array?
false
end
|
#generic_class? ⇒ Boolean
515
516
517
|
# File 'lib/bitescript/mirror.rb', line 515
def generic_class?
false
end
|
#inspect ⇒ Object
521
522
523
|
# File 'lib/bitescript/mirror.rb', line 521
def inspect
"<#{self.class.name} #{to_s}>"
end
|
#type_variable? ⇒ Boolean
518
519
520
|
# File 'lib/bitescript/mirror.rb', line 518
def type_variable?
false
end
|
#wildcard? ⇒ Boolean
512
513
514
|
# File 'lib/bitescript/mirror.rb', line 512
def wildcard?
false
end
|