class RuboCop::AST::SuperNode

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

def node_parts

Returns:
  • (Array) - the different parts of the `super` node
def node_parts
  [nil, :super, *to_a]
end