Method code for $parse_lib.buildref()

[Turn off line numbering]
  1: arg type, obj, def, name, @ignore;
  2: var line;
  3: 
  4: line = tostr(obj);
  5: if (obj != def)
  6:     line += "<" + def + ">";
  7: if (type == 'object)
  8:     return line;
  9: if (type == 'method)
 10:     return line + "." + tostr(name) + "()";
 11: if (type == 'variable)
 12:     return line + "," + tostr(name);

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

Tlon