module RuboCop::Cop::VariableForce::Branchable

def branch

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