Sha256: f9dfe4f83c1e9be05acfd577e8754fd2e0a2e2b1e55d4f2ab0a5dd6763ddfd5a

Contents?: true

Size: 636 Bytes

Versions: 24

Compression:

Stored size: 636 Bytes

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Lint
      # This cop checks for useless `else` in `begin..end` without `rescue`.
      #
      # @example
      #   begin
      #     do_something
      #   else
      #     handle_errors # This will never be run.
      #   end
      class UselessElseWithoutRescue < Cop
        include ParserDiagnostic

        MSG = '`else` without `rescue` is useless.'

        private

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

        def alternative_message(_diagnostic)
          MSG
        end
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
rubocop-0.25.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-0.24.1 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-0.24.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb
rubocop-0.23.0 lib/rubocop/cop/lint/useless_else_without_rescue.rb