Sha256: 8aa02cc7670721220c4170ae7e2fd18539c19f0c09bce1fb36516fadffab7599

Contents?: true

Size: 657 Bytes

Versions: 6847

Compression:

Stored size: 657 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # 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.
    class SuperNode < Node
      include ParameterizedNode
      include MethodDispatchNode

      # 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
      def node_parts
        [nil, :super, *to_a]
      end
    end
  end
end

Version data entries

6,847 entries across 6,822 versions & 29 rubygems

Version Path
rubocop-0.55.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.54.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.53.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.52.1 lib/rubocop/ast/node/super_node.rb
rubocop-0.52.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.51.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.50.0 lib/rubocop/ast/node/super_node.rb