Sha256: 6c413f87c045bbef75f4ae969289b4c329f64f291829a09e106a320c7afd56ff

Contents?: true

Size: 1.84 KB

Versions: 6909

Compression:

Stored size: 1.84 KB

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # Common functionality for nodes that are parameterized:
    # `send`, `super`, `zsuper`, `def`, `defs`
    module ParameterizedNode
      # Checks whether this node's arguments are wrapped in parentheses.
      #
      # @return [Boolean] whether this node's arguments are
      #                   wrapped in parentheses
      def parenthesized?
        loc.end && loc.end.is?(')')
      end

      # A shorthand for getting the first argument of the node.
      # Equivalent to `arguments.first`.
      #
      # @return [Node, nil] the first argument of the node,
      #                     or `nil` if there are no arguments
      def first_argument
        arguments[0]
      end

      # A shorthand for getting the last argument of the node.
      # Equivalent to `arguments.last`.
      #
      # @return [Node, nil] the last argument of the node,
      #                     or `nil` if there are no arguments
      def last_argument
        arguments[-1]
      end

      # Checks whether this node has any arguments.
      #
      # @return [Boolean] whether this node has any arguments
      def arguments?
        !arguments.empty?
      end

      # Checks whether any argument of the node is a splat
      # argument, i.e. `*splat`.
      #
      # @return [Boolean] whether the node is a splat argument
      def splat_argument?
        arguments? &&
          (arguments.any?(&:splat_type?) || arguments.any?(&:restarg_type?))
      end
      alias rest_argument? splat_argument?

      # Whether the last argument of the node is a block pass,
      # i.e. `&block`.
      #
      # @return [Boolean] whether the last argument of the node is a block pass
      def block_argument?
        arguments? &&
          (last_argument.block_pass_type? || last_argument.blockarg_type?)
      end
    end
  end
end

Version data entries

6,909 entries across 6,903 versions & 26 rubygems

Version Path
ory-client-0.0.1.alpha140 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha139 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha138 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha134 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha133 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha132 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
primary_connect_proto-0.7.3 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
primary_connect_proto-0.7.2 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha131 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha130 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
primary_connect_proto-0.7.1 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
primary_connect_proto-0.7.0 vendor/bundle/ruby/2.6.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha129 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha128 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha127 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha126 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha125 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha124 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha123 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb
ory-client-0.0.1.alpha122 vendor/bundle/ruby/2.5.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/mixin/parameterized_node.rb