Method code for $parse_lib._traceback()

[Turn off line numbering]
  1: arg what, @more;
  2: var line;
  3: 
  4: if (more) {
  5:     if (more[1] == more[2])
  6:         return more[1] + "." + what + "() line " + more[3];
  7:     else
  8:         return more[1] + "<" + more[2] + ">." + what + "() line " + more[3];
  9: } else {
 10:     return what;
 11: }

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

Tlon