[EMAIL PROTECTED] wrote:
>
> Hi, would it be possible to return line-numbers when an error
> message is given? The where: ... is not always so clear,
> especially in huge scripts.
>
That sounds sort of useful, but quite limited. For example, what
meaning does "line number" have for code that:
a) is in a block (or string) that was constructed by another piece of
code, with no source file involved;
b) originally came from a source file, but has since been modified
in memory (by itself or another piece of code);
c) is code entered interactively from the command line
d) is in a "do" executed block (which may "do" other blocks...)
-jn-