Class: Duby::JVM::Types::TypeDefMeta
- Inherits:
-
MetaType
- Object
- AST::Node
- AST::TypeReference
- Type
- MetaType
- Duby::JVM::Types::TypeDefMeta
- Defined in:
- lib/duby/jvm/types.rb,
lib/duby/jvm/types/methods.rb
Constant Summary
Constants inherited from AST::TypeReference
AST::TypeReference::BlockType, AST::TypeReference::ErrorType, AST::TypeReference::NoType, AST::TypeReference::NullType, AST::TypeReference::UnreachableType
Instance Attribute Summary
Attributes inherited from MetaType
Attributes inherited from Type
Attributes inherited from AST::TypeReference
Attributes included from AST::Named
Attributes inherited from AST::Node
#children, #inferred_type, #newline, #parent, #position
Instance Method Summary collapse
- #constructor(*args) ⇒ Object
- #declared_class_methods(name = nil) ⇒ Object
- #declared_instance_methods(name = nil) ⇒ Object
- #field_getter(name) ⇒ Object
- #field_setter(name) ⇒ Object
- #java_method(*args) ⇒ Object
Methods inherited from MetaType
#basic_type, #initialize, #inner_class?, #interfaces, #jvm_type, #meta, #meta?, #superclass
Methods inherited from Type
#add_enumerable_macros, #add_intrinsics, #add_macro, #add_method, #aload, #array?, #array_type, #assignable_from?, #astore, #basic_type, #compatible?, #component_type, #declared_constructors, #declared_intrinsics, #dynamic?, #expand_each, #get_method, #init_value, #initialize, #inner_class?, #inner_class_getter, #inspect, #interface?, #interfaces, #intrinsics, #is_parent, #iterable?, #jvm_type, #load, #log, #meta, #meta?, #newarray, #prefix, #primitive?, #return, #store, #superclass, #to_source, #unmeta, #void?, #wide?
Methods included from MethodLookup
#each_is_exact, #each_is_exact_or_subtype_or_convertible, #field_lookup, #find_jls, #find_method, #inner_class, #is_more_specific?, #log, #phase1, #phase2, #phase3, #primitive_convertible?
Methods inherited from AST::TypeReference
#==, #block?, #compatible?, #component_type, #eql?, #error?, #hash, #initialize, #is_parent, #iterable?, #meta?, #narrow, #null?, #primitive?, #to_s, #unmeta, #unreachable?
Methods included from AST::Named
Methods inherited from AST::Node
#<<, ===, #[], #_set_parent, child, child_name, #each, #empty?, #expr?, #initialize, #initialize_copy, #insert, #inspect, #line_number, #log, #precompile, #resolve_if, #resolved!, #resolved?, #simple_name, #temp, #to_s
Constructor Details
This class inherits a constructor from Duby::JVM::Types::MetaType
Instance Method Details
#constructor(*args) ⇒ Object
597 598 599 |
# File 'lib/duby/jvm/types/methods.rb', line 597 def constructor(*args) .constructor(*args) end |
#declared_class_methods(name = nil) ⇒ Object
605 606 607 |
# File 'lib/duby/jvm/types/methods.rb', line 605 def declared_class_methods(name=nil) .declared_class_methods(name) end |
#declared_instance_methods(name = nil) ⇒ Object
609 610 611 |
# File 'lib/duby/jvm/types/methods.rb', line 609 def declared_instance_methods(name=nil) .declared_instance_methods(name) end |
#field_getter(name) ⇒ Object
613 614 615 |
# File 'lib/duby/jvm/types/methods.rb', line 613 def field_getter(name) nil end |
#field_setter(name) ⇒ Object
617 618 619 |
# File 'lib/duby/jvm/types/methods.rb', line 617 def field_setter(name) nil end |
#java_method(*args) ⇒ Object
601 602 603 |
# File 'lib/duby/jvm/types/methods.rb', line 601 def java_method(*args) .java_static_method(*args) end |