Sha256: 8aa02cc7670721220c4170ae7e2fd18539c19f0c09bce1fb36516fadffab7599

Contents?: true

Size: 657 Bytes

Versions: 6892

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,892 entries across 6,867 versions & 30 rubygems

Version Path
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/ast/node/super_node.rb
rubocop-0.57.2 lib/rubocop/ast/node/super_node.rb
rubocop-0.57.1 lib/rubocop/ast/node/super_node.rb
rubocop-0.57.0 lib/rubocop/ast/node/super_node.rb
rubocop-0.56.0 lib/rubocop/ast/node/super_node.rb
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