Class: RuboCop::AST::NodePattern::Node::Sequence

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

Overview

Node class for ‘(type first second …)`

Constant Summary

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, #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

Constructor Details

#initialize(type, children = [], properties = {}) ⇒ Sequence

Returns a new instance of Sequence.



121
122
123
124
125
126
127
# File 'lib/rubocop/ast/node_pattern/node.rb', line 121

def initialize(type, children = [], properties = {})
  if (replace = children.first.in_sequence_head)
    children = [*replace, *children[1..]]
  end

  super
end