Sha256: 6f05a581ee30c892fb87442b5e4ad4d49d6d435437fd9490f8614e6b706e74ed

Contents?: true

Size: 820 Bytes

Versions: 24

Compression:

Stored size: 820 Bytes

Contents

# encoding: utf-8

module RuboCop
  module Cop
    module Lint
      # This cop checks for unreachable code.
      # The check are based on the presence of flow of control
      # statement in non-final position in *begin*(implicit) blocks.
      class UnreachableCode < Cop
        MSG = 'Unreachable code detected.'

        NODE_TYPES = [:return, :next, :break, :retry, :redo]
        FLOW_COMMANDS = [:throw, :raise, :fail]

        def on_begin(node)
          expressions = *node

          expressions.each_cons(2) do |e1, e2|
            next unless NODE_TYPES.include?(e1.type) || flow_command?(e1)
            add_offense(e2, :expression)
          end
        end

        private

        def flow_command?(node)
          FLOW_COMMANDS.any? { |c| command?(c, node) }
        end
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 2 rubygems

Version Path
rubyjobbuilderdsl-0.0.2 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/lint/unreachable_code.rb
rubyjobbuilderdsl-0.0.1 vendor/bundle/ruby/2.1.0/gems/rubocop-0.26.0/lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.35.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.35.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.34.2 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.34.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.34.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.33.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.32.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.32.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.31.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.30.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.30.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.29.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.29.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.28.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.27.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.27.0 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.26.1 lib/rubocop/cop/lint/unreachable_code.rb
rubocop-0.26.0 lib/rubocop/cop/lint/unreachable_code.rb