Method code for $parse_lib.buildref()

[Turn on line numbering]
arg type, obj, def, name, @ignore;
var line;

line = tostr(obj);
if (obj != def)
    line += "<" + def + ">";
if (type == 'object)
    return line;
if (type == 'method)
    return line + "." + tostr(name) + "()";
if (type == 'variable)
    return line + "," + tostr(name);

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

Tlon