Sha256: bbd8f7994ae19511f989cfa0ecfd2bc7f820a8bd1e78fed83e59684ea1cd748e

Contents?: true

Size: 961 Bytes

Versions: 11

Compression:

Stored size: 961 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # This cop checks for invalid character literals with a non-escaped
      # whitespace character (e.g. `? `).
      # However, currently it's unclear whether there's a way to emit this
      # warning without syntax errors.
      #
      #     $ ruby -w
      #     p(? )
      #     -:1: warning: invalid character syntax; use ?\s
      #     -:1: syntax error, unexpected '?', expecting ')'
      #     p(? )
      #        ^
      #
      # @example
      #   p(? )
      class InvalidCharacterLiteral < Cop
        include ParserDiagnostic

        private

        def relevant_diagnostic?(diagnostic)
          diagnostic.reason == :invalid_escape_use
        end

        def alternative_message(diagnostic)
          diagnostic
            .message
            .capitalize
            .gsub('character syntax', 'character literal')
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
dirwatch-0.0.9 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.8 vendor/bundle/ruby/2.5.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.6 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.5 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.4 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.3 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
dirwatch-0.0.2 vendor/bundle/ruby/2.3.0/gems/rubocop-0.46.0/lib/rubocop/cop/lint/invalid_character_literal.rb
rubocop-0.46.0 lib/rubocop/cop/lint/invalid_character_literal.rb
rubocop-0.45.0 lib/rubocop/cop/lint/invalid_character_literal.rb
rubocop-0.44.1 lib/rubocop/cop/lint/invalid_character_literal.rb
rubocop-0.44.0 lib/rubocop/cop/lint/invalid_character_literal.rb