Method code for $sys.parse_traceback_for_setting()

[Turn off line numbering]
  1: arg value, @args;
  2: var obj;
  3: 
  4: obj = (> $object_lib.to_dbref(value) <);
  5: if (!obj.is($user))
  6:     throw(~invset, "Setting must be a user type class");
  7: if (!('general_cache in obj.flags()))
  8:     throw(~invset, "Setting must be a user class");
  9: return obj;

// Created 27-Mar-1995 as a part of ColdCore, see: @help Credit

Tlon