Class: SmartTodo::Todo::CallNode
- Inherits:
-
Object
- Object
- SmartTodo::Todo::CallNode
- Defined in:
- lib/smart_todo/todo.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
Returns the value of attribute arguments.
-
#location ⇒ Object
readonly
Returns the value of attribute location.
-
#method_name ⇒ Object
readonly
Returns the value of attribute method_name.
Instance Method Summary collapse
-
#initialize(method_name, arguments, location) ⇒ CallNode
constructor
A new instance of CallNode.
Constructor Details
#initialize(method_name, arguments, location) ⇒ CallNode
Returns a new instance of CallNode.
27 28 29 30 31 |
# File 'lib/smart_todo/todo.rb', line 27 def initialize(method_name, arguments, location) @arguments = arguments @method_name = method_name @location = location end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
Returns the value of attribute arguments.
25 26 27 |
# File 'lib/smart_todo/todo.rb', line 25 def arguments @arguments end |
#location ⇒ Object (readonly)
Returns the value of attribute location.
25 26 27 |
# File 'lib/smart_todo/todo.rb', line 25 def location @location end |
#method_name ⇒ Object (readonly)
Returns the value of attribute method_name.
25 26 27 |
# File 'lib/smart_todo/todo.rb', line 25 def method_name @method_name end |