Mercurial > hg > octave-nkf
diff src/pt.h @ 3805:44386b0e53da
[project @ 2001-03-01 16:54:31 by jwe]
author | jwe |
---|---|
date | Thu, 01 Mar 2001 16:54:33 +0000 |
parents | e44ffad3d06c |
children | 6e86256e9c54 |
line wrap: on
line diff
--- a/src/pt.h +++ b/src/pt.h @@ -31,6 +31,7 @@ #include <iostream> +class octave_user_function; class tree_walker; // Base class for the parse tree. @@ -69,6 +70,15 @@ // If true, stop executing at the next possible point. static bool break_next; + + // The line where dbg_next was executed. + static int last_line; + + // The function where the last breakpoint occurred. + static const octave_user_function *break_function; + + // The statement where the last breakpoint occurred. + static const tree *break_statement; private: