Sha256: d0ae1786d9b8b77cf9b950d6152e54eed02355707afcc09589889cd35b6c18e6

Contents?: true

Size: 1020 Bytes

Versions: 181

Compression:

Stored size: 1020 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # Common functionality for nodes that are predicates:
    # `or`, `and` ...
    module PredicateOperatorNode
      LOGICAL_AND = '&&'
      private_constant :LOGICAL_AND
      SEMANTIC_AND = 'and'
      private_constant :SEMANTIC_AND
      LOGICAL_OR = '||'
      private_constant :LOGICAL_OR
      SEMANTIC_OR = 'or'
      private_constant :SEMANTIC_OR

      # Returns the operator as a string.
      #
      # @return [String] the operator
      def operator
        loc.operator.source
      end

      # Checks whether this is a logical operator.
      #
      # @return [Boolean] whether this is a logical operator
      def logical_operator?
        operator == LOGICAL_AND || operator == LOGICAL_OR
      end

      # Checks whether this is a semantic operator.
      #
      # @return [Boolean] whether this is a semantic operator
      def semantic_operator?
        operator == SEMANTIC_AND || operator == SEMANTIC_OR
      end
    end
  end
end

Version data entries

181 entries across 175 versions & 22 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.31.3/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.37.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.36.2 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.36.1 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.36.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.35.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.34.1 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.34.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.33.1 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.33.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.32.3 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.32.2 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.32.1 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.32.0 lib/rubocop/ast/node/mixin/predicate_operator_node.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-ast-1.31.3/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/rubocop-ast-1.23.0/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/rubocop-ast-1.23.0/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/rubocop-ast-1.23.0/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-ast-1.31.3/lib/rubocop/ast/node/mixin/predicate_operator_node.rb
rubocop-ast-1.31.3 lib/rubocop/ast/node/mixin/predicate_operator_node.rb