Class: TypeFusion::SampleCall
- Inherits:
-
Struct
- Object
- Struct
- TypeFusion::SampleCall
- Defined in:
- lib/type_fusion/sample_call.rb
Instance Attribute Summary collapse
-
#application_name ⇒ Object
Returns the value of attribute application_name.
-
#gem_name ⇒ Object
Returns the value of attribute gem_name.
-
#gem_version ⇒ Object
Returns the value of attribute gem_version.
-
#location ⇒ Object
Returns the value of attribute location.
-
#method_name ⇒ Object
Returns the value of attribute method_name.
-
#parameters ⇒ Object
Returns the value of attribute parameters.
-
#receiver ⇒ Object
Returns the value of attribute receiver.
-
#return_value ⇒ Object
Returns the value of attribute return_value.
-
#type_fusion_version ⇒ Object
Returns the value of attribute type_fusion_version.
Instance Method Summary collapse
Instance Attribute Details
#application_name ⇒ Object
Returns the value of attribute application_name
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def application_name @application_name end |
#gem_name ⇒ Object
Returns the value of attribute gem_name
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def gem_name @gem_name end |
#gem_version ⇒ Object
Returns the value of attribute gem_version
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def gem_version @gem_version end |
#location ⇒ Object
Returns the value of attribute location
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def location @location end |
#method_name ⇒ Object
Returns the value of attribute method_name
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def method_name @method_name end |
#parameters ⇒ Object
Returns the value of attribute parameters
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def parameters @parameters end |
#receiver ⇒ Object
Returns the value of attribute receiver
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def receiver @receiver end |
#return_value ⇒ Object
Returns the value of attribute return_value
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def return_value @return_value end |
#type_fusion_version ⇒ Object
Returns the value of attribute type_fusion_version
6 7 8 |
# File 'lib/type_fusion/sample_call.rb', line 6 def type_fusion_version @type_fusion_version end |
Instance Method Details
#inspect ⇒ Object
11 12 13 |
# File 'lib/type_fusion/sample_call.rb', line 11 def inspect "#<TypeFusion::SampleCall receiver=#{receiver.inspect} method_name=#{method_name.inspect} gem_name=#{gem_name.inspect}>" end |
#to_s ⇒ Object
7 8 9 |
# File 'lib/type_fusion/sample_call.rb', line 7 def to_s JSON.pretty_generate(to_h) end |