Method code for $object_lib.get_name()

[Turn off line numbering]
  1: arg obj, @args;
  2: var meth;
  3: 
  4: // get_name(obj, 'method, [args]) (3rd arg must be a list)
  5: if (type(obj) == 'frob && !valid(frob_class(obj)))
  6:     return toliteral(obj);
  7: if (type(obj) != 'frob && !valid(obj))
  8:     return toliteral(obj);
  9: [(meth ?= 'name), (args ?= [])] = args;
 10: return obj.(meth)(@args);

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

the Cold Dark