comparison src/pt-stmt.h @ 3770:bf6116ca10eb

[project @ 2001-02-02 02:21:40 by jwe]
author jwe
date Fri, 02 Feb 2001 02:21:42 +0000
parents 58140935c812
children f9ea3dcf58ee
comparison
equal deleted inserted replaced
3769:7c8e3c42ed04 3770:bf6116ca10eb
98 98
99 // Print result of eval for this command? 99 // Print result of eval for this command?
100 bool print_flag; 100 bool print_flag;
101 101
102 // No copying! 102 // No copying!
103
104 tree_statement (const tree_statement&); 103 tree_statement (const tree_statement&);
105 104
106 tree_statement& operator = (const tree_statement&); 105 tree_statement& operator = (const tree_statement&);
107 }; 106 };
108 107
130 129
131 void mark_as_function_body (void) { function_body = true; } 130 void mark_as_function_body (void) { function_body = true; }
132 131
133 octave_value_list eval (bool silent = false, int nargout = 0); 132 octave_value_list eval (bool silent = false, int nargout = 0);
134 133
134 int set_breakpoint (int line);
135
136 void delete_breakpoint (int line);
137
138 octave_value_list list_breakpoints (void);
139
135 void accept (tree_walker& tw); 140 void accept (tree_walker& tw);
136 141
137 private: 142 private:
138 143
139 // Does this list of statements make up the body of a function? 144 // Does this list of statements make up the body of a function?