Class: Mirah::JVM::Types::MirahMember

Inherits:
Object
  • Object
show all
Defined in:
lib/mirah/jvm/types/methods.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(klass, name, args, return_type, static, exceptions) ⇒ MirahMember

Returns a new instance of MirahMember.



371
372
373
374
375
376
377
378
379
380
381
# File 'lib/mirah/jvm/types/methods.rb', line 371

def initialize(klass, name, args, return_type, static, exceptions)
  if return_type == Void
    return_type = nil
  end
  @declaring_class = klass
  @name = name
  @argument_types = args
  @return_type = return_type
  @static = static
  @exception_types = exceptions || []
end

Instance Attribute Details

#argument_typesObject (readonly)

Returns the value of attribute argument_types.



368
369
370
# File 'lib/mirah/jvm/types/methods.rb', line 368

def argument_types
  @argument_types
end

#declaring_classObject (readonly)

Returns the value of attribute declaring_class.



368
369
370
# File 'lib/mirah/jvm/types/methods.rb', line 368

def declaring_class
  @declaring_class
end

#exception_typesObject (readonly)

Returns the value of attribute exception_types.



369
370
371
# File 'lib/mirah/jvm/types/methods.rb', line 369

def exception_types
  @exception_types
end

#nameObject (readonly)

Returns the value of attribute name.



368
369
370
# File 'lib/mirah/jvm/types/methods.rb', line 368

def name
  @name
end

#return_typeObject (readonly)

Returns the value of attribute return_type.



368
369
370
# File 'lib/mirah/jvm/types/methods.rb', line 368

def return_type
  @return_type
end

Instance Method Details

#abstract?Boolean

Returns:



387
388
389
# File 'lib/mirah/jvm/types/methods.rb', line 387

def abstract?
  @declaring_class.interface?
end

#static?Boolean

Returns:



383
384
385
# File 'lib/mirah/jvm/types/methods.rb', line 383

def static?
  @static
end