class RuboCop::Cop::VariableForce

def inspect_variables_in_scope(scope_node)

This is called for each scope recursively.
def inspect_variables_in_scope(scope_node)
  variable_table.push_scope(scope_node)
  process_children(scope_node)
  variable_table.pop_scope
end