comparison src/pt.cc @ 4748:7b145222fea3

[project @ 2004-02-07 06:27:27 by jwe]
author jwe
date Sat, 07 Feb 2004 06:27:28 +0000
parents 5719210fff4c
children e35b034d3523
comparison
equal deleted inserted replaced
4747:3f28979bbe2c 4748:7b145222fea3
31 #include <iostream> 31 #include <iostream>
32 #include <string> 32 #include <string>
33 33
34 #include "lo-sstream.h" 34 #include "lo-sstream.h"
35 35
36 #include "ov-fcn.h"
36 #include "pt.h" 37 #include "pt.h"
37 #include "pt-pr-code.h" 38 #include "pt-pr-code.h"
38 39
39 // If true, stop executing at the next possible point. 40 // If true, stop executing at the next possible point.
40 bool tree::break_next = false; 41 bool tree::break_next = false;
41 42
42 // The line where dbg_next was executed. 43 // The line where dbg_next was executed.
43 int tree::last_line = 0; 44 int tree::last_line = 0;
44 45
45 // The function where the last breakpoint occurred. 46 // The function where the last breakpoint occurred.
46 const octave_user_function *tree::break_function = 0; 47 const octave_function *tree::break_function = 0;
47 48
48 // The statement where the last breakpoint occurred. 49 // The statement where the last breakpoint occurred.
49 const tree *tree::break_statement = 0; 50 const tree *tree::break_statement = 0;
50 51
51 // Hide the details of the string buffer so that we are less likely to 52 // Hide the details of the string buffer so that we are less likely to