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;
 10: 
 11: // $#Edited: 03 Sep 98 06:32 $brandon

["// Created 26-Mar-1995 as a part of ColdCore, see: @help Credit"]

the Cold Dark