Module: RuboCop::Cop::VariableForce::Branchable

Included in:
Assignment, Reference
Defined in:
lib/rubocop/cop/variable_force/branchable.rb

Overview

Mix-in module for classes which own a node and need branch information of the node. The user classes must implement #node and #scope.

Instance Method Summary collapse

Instance Method Details

#branchObject



9
10
11
12
# File 'lib/rubocop/cop/variable_force/branchable.rb', line 9

def branch
  return @branch if instance_variable_defined?(:@branch)
  @branch = Branch.of(node, scope: scope)
end

#run_exclusively_with?(other) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
17
# File 'lib/rubocop/cop/variable_force/branchable.rb', line 14

def run_exclusively_with?(other)
  return false if !branch || !other.branch
  branch.exclusive_with?(other.branch)
end