class SmartTodo::Parser::MethodNode
A MethodNode
represent an event associated to a TODO.
Attributes
arguments[R]
method_name[R]
Public Class Methods
new(method_name, arguments)
click to toggle source
@param method_name
[Symbol] @param arguments [Array<String>]
# File lib/smart_todo/parser/metadata_parser.rb, line 13 def initialize(method_name, arguments) @arguments = arguments @method_name = method_name end