class Bundler::Molinillo::Resolver::Resolution

def process_topmost_state

Returns:
  • (void) -
def process_topmost_state
  if possibility
    attempt_to_activate
  else
    create_conflict
    unwind_for_conflict
  end
rescue CircularDependencyError => underlying_error
  create_conflict(underlying_error)
  unwind_for_conflict
end