Class: RBS::Test::CallTrace
- Inherits:
-
Struct
- Object
- Struct
- RBS::Test::CallTrace
- Defined in:
- lib/rbs/test.rb,
sig/test.rbs
Instance Attribute Summary collapse
-
#block_calls ⇒ Object
Returns the value of attribute block_calls.
-
#block_given ⇒ Object
Returns the value of attribute block_given.
-
#method_call ⇒ Object
Returns the value of attribute method_call.
-
#method_name ⇒ Object
Returns the value of attribute method_name.
Instance Method Summary collapse
-
#initialize ⇒ CallTrace
constructor
A new instance of CallTrace.
Constructor Details
#initialize ⇒ CallTrace
Returns a new instance of CallTrace.
73 |
# File 'sig/test.rbs', line 73
def initialize: (method_name: Symbol, method_call: ArgumentsReturn, block_calls: Array[ArgumentsReturn], block_given: bool) -> void
|
Instance Attribute Details
#block_calls ⇒ Object
Returns the value of attribute block_calls
74 75 76 |
# File 'lib/rbs/test.rb', line 74 def block_calls @block_calls end |
#block_given ⇒ Object
Returns the value of attribute block_given
74 75 76 |
# File 'lib/rbs/test.rb', line 74 def block_given @block_given end |
#method_call ⇒ Object
Returns the value of attribute method_call
74 75 76 |
# File 'lib/rbs/test.rb', line 74 def method_call @method_call end |
#method_name ⇒ Object
Returns the value of attribute method_name
74 75 76 |
# File 'lib/rbs/test.rb', line 74 def method_name @method_name end |