Sha256: 833a0a4efc0be9305df3a10485ebce24b691d2757d3ec0f37b81b4e2d16619e6

Contents?: true

Size: 1.73 KB

Versions: 14

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # A node extension for `pair` nodes. This will be used in place of a plain
    # node when the builder constructs the AST, making its methods available
    # to all `pair` nodes within RuboCop.
    class PairNode < Node
      include HashElementNode

      HASH_ROCKET = '=>'.freeze
      SPACED_HASH_ROCKET = ' => '.freeze
      COLON = ':'.freeze
      SPACED_COLON = ': '.freeze

      # Checks whether the `pair` uses a hash rocket delimiter.
      #
      # @return [Boolean] whether this `pair` uses a hash rocket delimiter
      def hash_rocket?
        loc.operator.is?(HASH_ROCKET)
      end

      # Checks whether the `pair` uses a colon delimiter.
      #
      # @return [Boolean] whether this `pair` uses a colon delimiter
      def colon?
        loc.operator.is?(COLON)
      end

      # Returns the delimiter of the `pair` as a string. Returns `=>` for a
      # colon delimited `pair`, and `:` for a hash rocket delimited `pair`.
      #
      # @param [Boolean] with_spacing whether to include spacing
      # @return [String] the delimiter of the `pair`
      def delimiter(with_spacing = false)
        if with_spacing
          hash_rocket? ? SPACED_HASH_ROCKET : SPACED_COLON
        else
          hash_rocket? ? HASH_ROCKET : COLON
        end
      end

      # Returns the inverse delimiter of the `pair` as a string.
      #
      # @param [Boolean] with_spacing whether to include spacing
      # @return [String] the inverse delimiter of the `pair`
      def inverse_delimiter(with_spacing = false)
        if with_spacing
          hash_rocket? ? SPACED_COLON : SPACED_HASH_ROCKET
        else
          hash_rocket? ? COLON : HASH_ROCKET
        end
      end
    end
  end
end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
rubocop-0.59.2 lib/rubocop/ast/node/pair_node.rb
rubocop-0.59.1 lib/rubocop/ast/node/pair_node.rb
rubocop-0.59.0 lib/rubocop/ast/node/pair_node.rb
rubocop-0.58.2 lib/rubocop/ast/node/pair_node.rb
rubocop-0.58.1 lib/rubocop/ast/node/pair_node.rb
rubocop-0.58.0 lib/rubocop/ast/node/pair_node.rb
vagrant-packet-0.1.1 vendor/bundle/ruby/2.4.0/gems/rubocop-0.57.2/lib/rubocop/ast/node/pair_node.rb
rubocop-0.57.2 lib/rubocop/ast/node/pair_node.rb
rubocop-0.57.1 lib/rubocop/ast/node/pair_node.rb
rubocop-0.57.0 lib/rubocop/ast/node/pair_node.rb
rubocop-0.56.0 lib/rubocop/ast/node/pair_node.rb
rubocop-0.55.0 lib/rubocop/ast/node/pair_node.rb
rubocop-0.54.0 lib/rubocop/ast/node/pair_node.rb
rubocop-0.53.0 lib/rubocop/ast/node/pair_node.rb