311931203121312231233124312531263127
* @return Gets the line number if debug information available, or -1 * otherwise */ public int getLine() { DebugInfo di = function.getDebugInfo(); return (di == null) ? -1 : di.getLine(di.getPos(offset + 1)); }
312931303131313231333134313531363137
/** * @return Gets the URL if debug information available, or -1 otherwise */ public String getURL() { DebugInfo di = function.getDebugInfo(); return (di == null) ? null : di.getURL(di.getPos(offset + 1)); }