Mercurial > hg > octave-nkf
annotate src/pt-stmt.h @ 8771:d3382daaf4d2
Use CARBON_LIBS instead of LIBS for framework Carbon.
author | Thomas Treichl <Thomas.Treichl@gmx.net> |
---|---|
date | Tue, 17 Feb 2009 00:28:48 -0500 |
parents | 33783e94fb16 |
children | b9ce57a309a3 |
rev | line source |
---|---|
2982 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1996, 1997, 2000, 2001, 2002, 2004, 2005, 2006, 2007 |
4 John W. Eaton | |
2982 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2982 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2982 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_tree_stmt_h) | |
25 #define octave_tree_stmt_h 1 | |
26 | |
27 class octave_value_list; | |
28 | |
29 class tree_command; | |
30 class tree_expression; | |
31 | |
32 class tree_walker; | |
33 | |
7552
6070c3bd69c4
Arbitrary call stack access for external debuggers changeset
ryanru@PrinceHumperdinck
parents:
7336
diff
changeset
|
34 #include <deque> |
6070c3bd69c4
Arbitrary call stack access for external debuggers changeset
ryanru@PrinceHumperdinck
parents:
7336
diff
changeset
|
35 |
4219 | 36 #include "base-list.h" |
3665 | 37 #include "comment-list.h" |
7336 | 38 #include "symtab.h" |
3665 | 39 |
2982 | 40 // A statement is either a command to execute or an expression to |
41 // evaluate. | |
42 | |
43 class | |
44 tree_statement | |
45 { | |
46 public: | |
47 | |
48 tree_statement (void) | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
49 : cmd (0), expr (0), bp (false), comm (0) { } |
2982 | 50 |
3665 | 51 tree_statement (tree_command *c, octave_comment_list *cl) |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
52 : cmd (c), expr (0), bp (false), comm (cl) { } |
2982 | 53 |
3665 | 54 tree_statement (tree_expression *e, octave_comment_list *cl) |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
55 : cmd (0), expr (e), bp (false), comm (cl) { } |
2982 | 56 |
57 ~tree_statement (void); | |
58 | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
59 void set_print_flag (bool print_flag); |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
60 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
61 bool print_result (void); |
2982 | 62 |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
63 bool is_command (void) const { return cmd != 0; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
64 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
65 bool is_expression (void) const { return expr != 0; } |
2982 | 66 |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
67 void set_breakpoint (void) { bp = true; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
68 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
69 void delete_breakpoint (void) { bp = false; } |
2982 | 70 |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
71 bool is_breakpoint (void) const { return bp; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
72 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
73 int line (void) const; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
74 int column (void) const; |
2982 | 75 |
8669
33783e94fb16
line number fixes and other evaluator tweaks
John W. Eaton <jwe@octave.org>
parents:
8658
diff
changeset
|
76 void echo_code (void); |
2982 | 77 |
78 tree_command *command (void) { return cmd; } | |
79 | |
80 tree_expression *expression (void) { return expr; } | |
81 | |
3665 | 82 octave_comment_list *comment_text (void) { return comm; } |
83 | |
8471
02de6775f1fe
parse.y: always append statements to list, but remove null statements after seeing separator
John W. Eaton <jwe@octave.org>
parents:
7767
diff
changeset
|
84 bool is_null_statement (void) const { return ! (cmd || expr || comm); } |
02de6775f1fe
parse.y: always append statements to list, but remove null statements after seeing separator
John W. Eaton <jwe@octave.org>
parents:
7767
diff
changeset
|
85 |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
86 bool is_end_of_fcn_or_script (void) const; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
87 |
4935 | 88 // Allow modification of this statement. Note that there is no |
89 // checking. If you use these, are you sure you knwo what you are | |
90 // doing? | |
91 | |
92 void set_command (tree_command *c) { cmd = c; } | |
93 | |
94 void set_expression (tree_expression *e) { expr = e; } | |
95 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
96 tree_statement *dup (symbol_table::scope_id scope, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
97 symbol_table::context_id context); |
5861 | 98 |
2982 | 99 void accept (tree_walker& tw); |
100 | |
101 private: | |
102 | |
103 // Only one of cmd or expr can be valid at once. | |
104 | |
105 // Command to execute. | |
106 tree_command *cmd; | |
107 | |
108 // Expression to evaluate. | |
109 tree_expression *expr; | |
110 | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
111 // Breakpoint flag. |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
112 bool bp; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
113 |
3665 | 114 // Comment associated with this statement. |
115 octave_comment_list *comm; | |
116 | |
2988 | 117 // No copying! |
118 tree_statement (const tree_statement&); | |
119 | |
120 tree_statement& operator = (const tree_statement&); | |
2982 | 121 }; |
122 | |
123 // A list of statements to evaluate. | |
124 | |
125 class | |
4219 | 126 tree_statement_list : public octave_base_list<tree_statement *> |
2982 | 127 { |
128 public: | |
129 | |
130 tree_statement_list (void) | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
131 : function_body (false), anon_function_body (false), |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
132 script_body (false) { } |
2982 | 133 |
134 tree_statement_list (tree_statement *s) | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
135 : function_body (false), anon_function_body (false), |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
136 script_body (false) { append (s); } |
2982 | 137 |
138 ~tree_statement_list (void) | |
139 { | |
4219 | 140 while (! empty ()) |
2982 | 141 { |
4219 | 142 iterator p = begin (); |
143 delete *p; | |
144 erase (p); | |
2982 | 145 } |
146 } | |
147 | |
148 void mark_as_function_body (void) { function_body = true; } | |
149 | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
150 void mark_as_anon_function_body (void) { anon_function_body = true; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
151 |
7736 | 152 void mark_as_script_body (void) { script_body = true; } |
153 | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
154 bool is_function_body (void) const { return function_body; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
155 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
156 bool is_anon_function_body (void) const { return anon_function_body; } |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
157 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
158 bool is_script_body (void) const { return script_body; } |
2982 | 159 |
3770 | 160 int set_breakpoint (int line); |
161 | |
162 void delete_breakpoint (int line); | |
163 | |
164 octave_value_list list_breakpoints (void); | |
165 | |
7767
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
166 tree_statement_list *dup (symbol_table::scope_id scope, |
71f068b22fcc
scope and context fixes for function handles
John W. Eaton <jwe@octave.org>
parents:
7736
diff
changeset
|
167 symbol_table::context_id context); |
5861 | 168 |
2982 | 169 void accept (tree_walker& tw); |
170 | |
171 private: | |
172 | |
173 // Does this list of statements make up the body of a function? | |
174 bool function_body; | |
2988 | 175 |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
176 // Does this list of statements make up the body of a function? |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
177 bool anon_function_body; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
8471
diff
changeset
|
178 |
7736 | 179 // Does this list of statements make up the body of a script? |
180 bool script_body; | |
181 | |
2988 | 182 // No copying! |
183 | |
184 tree_statement_list (const tree_statement_list&); | |
185 | |
186 tree_statement_list& operator = (const tree_statement_list&); | |
2982 | 187 }; |
188 | |
189 #endif | |
190 | |
191 /* | |
192 ;;; Local Variables: *** | |
193 ;;; mode: C++ *** | |
194 ;;; End: *** | |
195 */ |