class YARP::ArgumentsNode
Represents a set of arguments to a method or a keyword.
return foo, bar, baz ^^^^^^^^^^^^^
Attributes
arguments[R]
attr_reader arguments: Array
Public Class Methods
Public Instance Methods
accept(visitor)
click to toggle source
def accept: (visitor: Visitor
) -> void
# File yarp/node.rb, line 308 def accept(visitor) visitor.visit_arguments_node(self) end
child_nodes()
click to toggle source
def child_nodes
: () -> Array[nil | Node]
# File yarp/node.rb, line 313 def child_nodes [*arguments] end
Also aliased as: deconstruct
comment_targets()
click to toggle source
def comment_targets
: () -> Array[Node | Location]
# File yarp/node.rb, line 318 def comment_targets [*arguments] end
copy(**params)
click to toggle source
def copy: (**params) -> ArgumentsNode
# File yarp/node.rb, line 323 def copy(**params) ArgumentsNode.new( params.fetch(:arguments) { arguments }, params.fetch(:location) { location }, ) end
deconstruct_keys(keys)
click to toggle source
inspect(inspector = NodeInspector.new)
click to toggle source
# File yarp/node.rb, line 338 def inspect(inspector = NodeInspector.new) inspector << inspector.header(self) inspector << "└── arguments: #{inspector.list("#{inspector.prefix} ", arguments)}" inspector.to_str end