Class: RuboCop::AST::SuperNode

Inherits:
Node
  • Object
show all
Includes:
MethodDispatchNode, ParameterizedNode
Defined in:
lib/rubocop/ast/node/super_node.rb

Overview

A node extension for ‘super`- and `zsuper` nodes. This will be used in place of a plain node when the builder constructs the AST, making its methods available to all `super`- and `zsuper` nodes within RuboCop.

Constant Summary

Constants included from MethodIdentifierPredicates

MethodIdentifierPredicates::ENUMERATOR_METHODS

Constants inherited from Node

Node::ARITHMETIC_OPERATORS, Node::BASIC_LITERALS, Node::COMPARISON_OPERATORS, Node::COMPOSITE_LITERALS, Node::FALSEY_LITERALS, Node::IMMUTABLE_LITERALS, Node::KEYWORDS, Node::LITERALS, Node::MUTABLE_LITERALS, Node::OPERATOR_KEYWORDS, Node::REFERENCES, Node::SPECIAL_KEYWORDS, Node::TRUTHY_LITERALS, Node::VARIABLES

Instance Method Summary collapse

Methods included from MethodDispatchNode

#access_modifier?, #arguments, #block_literal?, #block_node, #command?, #const_receiver?, #def_modifier?, #dot?, #double_colon?, #implicit_call?, #macro?, #method_name, #receiver, #self_receiver?, #setter_method?

Methods included from NodePattern::Macros

#def_node_matcher, #def_node_search, #node_search, #node_search_all, #node_search_body, #node_search_first

Methods included from MethodIdentifierPredicates

#assignment_method?, #bang_method?, #camel_case_method?, #comparison_method?, #const_receiver?, #enumerator_method?, #method?, #operator_method?, #predicate_method?, #self_receiver?

Methods included from ParameterizedNode

#arguments?, #block_argument?, #first_argument, #last_argument, #parenthesized?, #splat_argument?

Methods inherited from Node

#ancestors, #argument?, #arithmetic_operation?, #asgn_method_call?, #basic_literal?, #binary_operation?, #chained?, #child_nodes, #complete!, #complete?, #const_name, #defined_module, #defined_module_name, #descendants, #each_ancestor, #each_child_node, #each_descendant, #each_node, #empty_source?, #falsey_literal?, #first_line, #immutable_literal?, #initialize, #keyword?, #keyword_bang?, #keyword_not?, #last_line, #line_count, #literal?, #multiline?, #mutable_literal?, #nonempty_line_count, #numeric_type?, #operator_keyword?, #parent, #parent_module_name, #pure?, #receiver, #reference?, #sibling_index, #single_line?, #source, #source_length, #source_range, #special_keyword?, #truthy_literal?, #unary_operation?, #updated, #value_used?, #variable?

Methods included from Sexp

#s

Constructor Details

This class inherits a constructor from RuboCop::AST::Node

Instance Method Details

#node_partsArray

Custom destructuring method. This can be used to normalize destructuring for different variations of the node.

Returns:

  • (Array)

    the different parts of the ‘super` node



16
17
18
# File 'lib/rubocop/ast/node/super_node.rb', line 16

def node_parts
  [nil, :super, *to_a]
end