Method: BiteScript::ASM::MethodMirror#initialize
- Defined in:
-
lib/bitescript/mirror.rb,
lib/bitescript/asm3/mirror.rb
Returns a new instance of MethodMirror.
435 436 437 438 439 440 441 442 443 |
# File 'lib/bitescript/mirror.rb', line 435 def initialize(klass, flags, return_type, name, parameters, exceptions, signature) @flags = flags @declaring_class = klass @name = name @return_type = return_type @argument_types = parameters @exception_types = exceptions @signature = signature end |