Sha256: 203ef9ab14299b65141cbf2a36a43c746111ab06d9de4b22d7ed49a16e6d8d09

Contents?: true

Size: 922 Bytes

Versions: 7084

Compression:

Stored size: 922 Bytes

Contents

# frozen_string_literal: true

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

      # Returns the alternate operator of the `and` as a string.
      # Returns `and` for `&&` and vice versa.
      #
      # @return [String] the alternate of the `and` operator
      def alternate_operator
        logical_operator? ? SEMANTIC_AND : LOGICAL_AND
      end

      # Returns the inverse keyword of the `and` node as a string.
      # Returns `||` for `&&` and `or` for `and`.
      #
      # @return [String] the inverse of the `and` operator
      def inverse_operator
        logical_operator? ? LOGICAL_OR : SEMANTIC_OR
      end
    end
  end
end

Version data entries

7,084 entries across 7,048 versions & 51 rubygems

Version Path
zuora_connect_ui-0.8.1 vendor/ruby/2.6.0/gems/rubocop-0.74.0/lib/rubocop/ast/node/and_node.rb
zuora_connect_ui-0.8.0 vendor/ruby/2.6.0/gems/rubocop-0.74.0/lib/rubocop/ast/node/and_node.rb
zuora_connect_ui-0.8.0 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/ast/node/and_node.rb
rubocop-0.74.0 lib/rubocop/ast/node/and_node.rb
dadapush_client-1.0.1 vendor/bundle/ruby/2.3.0/gems/rubocop-0.66.0/lib/rubocop/ast/node/and_node.rb
rubocop-0.73.0 lib/rubocop/ast/node/and_node.rb
zuora_connect_ui-0.7.1 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/ast/node/and_node.rb
zuora_connect_ui-0.7.0 vendor/ruby/2.6.0/gems/rubocop-0.72.0/lib/rubocop/ast/node/and_node.rb
rubocop-0.72.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.71.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.70.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.69.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.68.1 lib/rubocop/ast/node/and_node.rb
rubocop-0.68.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.67.2 lib/rubocop/ast/node/and_node.rb
rubocop-0.67.1 lib/rubocop/ast/node/and_node.rb
rubocop-0.67.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.66.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.65.0 lib/rubocop/ast/node/and_node.rb
rubocop-0.64.0 lib/rubocop/ast/node/and_node.rb