Class: RuboCop::AST::NodePattern::Node::Repetition

Inherits:
RuboCop::AST::NodePattern::Node show all
Includes:
ForbidInSeqHead
Defined in:
lib/rubocop/ast/node_pattern/node.rb

Overview

Node class for ‘int+`

Constant Summary collapse

ARITIES =
{
  '*': 0..Float::INFINITY,
  '+': 1..Float::INFINITY,
  '?': 0..1
}.freeze

Constants inherited from RuboCop::AST::NodePattern::Node

FunctionCall, MAP

Instance Method Summary collapse

Methods included from ForbidInSeqHead

#in_sequence_head

Methods inherited from RuboCop::AST::NodePattern::Node

#arity_range, #capture?, #child, #children_nodes, #in_sequence_head, #matches_within_set?, #nb_captures, #rest?, #source_range, #variadic?, #with

Methods included from Descendence

#child_nodes, #descendants, #each_child_node, #each_descendant, #each_node

Instance Method Details

#arityObject



156
157
158
# File 'lib/rubocop/ast/node_pattern/node.rb', line 156

def arity
  ARITIES[operator]
end

#operatorObject



146
147
148
# File 'lib/rubocop/ast/node_pattern/node.rb', line 146

def operator
  children[1]
end