Class: RuboCop::AST::NodePattern::Node::AnyOrder
Overview
Node class for ‘<int str …>`
Constant Summary
FunctionCall, MAP
Instance Method Summary
collapse
#in_sequence_head
#arity_range, #capture?, #child, #children_nodes, #in_sequence_head, #matches_within_set?, #nb_captures, #rest?, #variadic?, #with
#child_nodes, #descendants, #each_child_node, #each_descendant, #each_node
Instance Method Details
#arity ⇒ Object
194
195
196
197
198
|
# File 'lib/rubocop/ast/node_pattern/node.rb', line 194
def arity
return children.size unless ends_with_rest?
ARITIES[children.size]
end
|
#ends_with_rest? ⇒ Boolean
186
187
188
|
# File 'lib/rubocop/ast/node_pattern/node.rb', line 186
def ends_with_rest?
children.last.rest?
end
|
#rest_node ⇒ Object
190
191
192
|
# File 'lib/rubocop/ast/node_pattern/node.rb', line 190
def rest_node
children.last if ends_with_rest?
end
|
#term_nodes ⇒ Object
182
183
184
|
# File 'lib/rubocop/ast/node_pattern/node.rb', line 182
def term_nodes
ends_with_rest? ? children[0...-1] : children
end
|