class RuboCop::AST::SuperNode
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.
Public Instance Methods
node_parts()
click to toggle source
Custom destructuring method. This can be used to normalize destructuring for different variations of the node.
@return [Array] the different parts of the `super` node
# File lib/rubocop/ast/node/super_node.rb, line 15 def node_parts [nil, :super, *to_a] end