Class: Method
- Inherits:
-
Object
- Object
- Method
- Includes:
- MethodAsCode, MethodAsExpression, MethodOrigin, MethodSig
- Defined in:
- lib/decompiler/method/origin.rb,
lib/decompiler/method/as_code.rb,
lib/decompiler/method/signature.rb,
lib/decompiler/method/as_expression.rb
Instance Method Summary collapse
-
#signature ⇒ Object
Return a String representing the method’s signature.
Methods included from MethodAsExpression
Methods included from MethodSig
#argument_names, #arguments, #block_arg, #local_vars, #rest_arg
Methods included from MethodAsCode
Methods included from MethodOrigin
Instance Method Details
#signature ⇒ Object
Return a String representing the method’s signature.
84 85 86 87 88 89 90 |
# File 'lib/decompiler/method/signature.rb', line 84 def signature return Signature.new( attached_class(), method_oid().to_s, argument_names(), arguments()) end |