Mercurial > hg > octave-nkf
annotate src/pt-walk.h @ 12583:bb29b58e650c release-3-4-x
abandon release-3-4-x branch in favor of workflow using stable and default branches and merging stable to default periodically
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Fri, 08 Apr 2011 09:06:04 -0400 |
parents | fd0a3ac60b0e |
children | 72c96de7a403 |
rev | line source |
---|---|
2123 | 1 /* |
2 | |
11523 | 3 Copyright (C) 1996-2011 John W. Eaton |
2123 | 4 |
5 This file is part of Octave. | |
6 | |
7 Octave is free software; you can redistribute it and/or modify it | |
8 under the terms of the GNU General Public License as published by the | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
2123 | 11 |
12 Octave is distributed in the hope that it will be useful, but WITHOUT | |
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
15 for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
2123 | 20 |
21 */ | |
22 | |
23 #if !defined (octave_tree_walker_h) | |
24 #define octave_tree_walker_h 1 | |
25 | |
5861 | 26 class tree_anon_fcn_handle; |
2876 | 27 class tree_argument_list; |
28 class tree_binary_expression; | |
4207 | 29 class tree_break_command; |
2876 | 30 class tree_colon_expression; |
4207 | 31 class tree_continue_command; |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
32 class tree_global_command; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
33 class tree_static_command; |
2876 | 34 class tree_decl_elt; |
35 class tree_decl_init_list; | |
2969 | 36 class tree_simple_for_command; |
37 class tree_complex_for_command; | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
38 class octave_user_script; |
2891 | 39 class octave_user_function; |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
40 class tree_function_def; |
2876 | 41 class tree_identifier; |
42 class tree_if_clause; | |
43 class tree_if_command; | |
44 class tree_if_command_list; | |
45 class tree_switch_case; | |
46 class tree_switch_case_list; | |
47 class tree_switch_command; | |
48 class tree_index_expression; | |
49 class tree_matrix; | |
3351 | 50 class tree_cell; |
2969 | 51 class tree_multi_assignment; |
2876 | 52 class tree_no_op_command; |
53 class tree_constant; | |
4342 | 54 class tree_fcn_handle; |
2876 | 55 class tree_parameter_list; |
56 class tree_postfix_expression; | |
57 class tree_prefix_expression; | |
4207 | 58 class tree_return_command; |
2876 | 59 class tree_return_list; |
2969 | 60 class tree_simple_assignment; |
2876 | 61 class tree_statement; |
62 class tree_statement_list; | |
63 class tree_try_catch_command; | |
64 class tree_unwind_protect_command; | |
65 class tree_while_command; | |
3484 | 66 class tree_do_until_command; |
2123 | 67 |
68 class | |
69 tree_walker | |
70 { | |
71 public: | |
72 | |
73 virtual void | |
5861 | 74 visit_anon_fcn_handle (tree_anon_fcn_handle&) = 0; |
75 | |
76 virtual void | |
2123 | 77 visit_argument_list (tree_argument_list&) = 0; |
78 | |
79 virtual void | |
80 visit_binary_expression (tree_binary_expression&) = 0; | |
81 | |
82 virtual void | |
4207 | 83 visit_break_command (tree_break_command&) = 0; |
2123 | 84 |
85 virtual void | |
86 visit_colon_expression (tree_colon_expression&) = 0; | |
87 | |
88 virtual void | |
4207 | 89 visit_continue_command (tree_continue_command&) = 0; |
2123 | 90 |
91 virtual void | |
8658
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
92 visit_global_command (tree_global_command&) = 0; |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
93 |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
94 virtual void |
73c4516fae10
New evaluator and debugger derived from tree-walker class
John W. Eaton <jwe@octave.org>
parents:
7715
diff
changeset
|
95 visit_static_command (tree_static_command&) = 0; |
2846 | 96 |
97 virtual void | |
98 visit_decl_elt (tree_decl_elt&) = 0; | |
99 | |
100 virtual void | |
101 visit_decl_init_list (tree_decl_init_list&) = 0; | |
102 | |
103 virtual void | |
2969 | 104 visit_simple_for_command (tree_simple_for_command&) = 0; |
105 | |
106 virtual void | |
107 visit_complex_for_command (tree_complex_for_command&) = 0; | |
2123 | 108 |
109 virtual void | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
110 visit_octave_user_script (octave_user_script&) = 0; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
111 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
112 virtual void |
2891 | 113 visit_octave_user_function (octave_user_function&) = 0; |
2123 | 114 |
115 virtual void | |
7715
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
116 visit_function_def (tree_function_def&) = 0; |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
117 |
5b4d278ec828
parse scripts completely before executing
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
118 virtual void |
2123 | 119 visit_identifier (tree_identifier&) = 0; |
120 | |
121 virtual void | |
122 visit_if_clause (tree_if_clause&) = 0; | |
123 | |
124 virtual void | |
125 visit_if_command (tree_if_command&) = 0; | |
126 | |
127 virtual void | |
128 visit_if_command_list (tree_if_command_list&) = 0; | |
129 | |
130 virtual void | |
2764 | 131 visit_switch_case (tree_switch_case&) = 0; |
132 | |
133 virtual void | |
134 visit_switch_case_list (tree_switch_case_list&) = 0; | |
135 | |
136 virtual void | |
137 visit_switch_command (tree_switch_command&) = 0; | |
138 | |
139 virtual void | |
2123 | 140 visit_index_expression (tree_index_expression&) = 0; |
141 | |
142 virtual void | |
143 visit_matrix (tree_matrix&) = 0; | |
144 | |
145 virtual void | |
3351 | 146 visit_cell (tree_cell&) = 0; |
147 | |
148 virtual void | |
2969 | 149 visit_multi_assignment (tree_multi_assignment&) = 0; |
2123 | 150 |
151 virtual void | |
2620 | 152 visit_no_op_command (tree_no_op_command&) = 0; |
153 | |
154 virtual void | |
2372 | 155 visit_constant (tree_constant&) = 0; |
2123 | 156 |
157 virtual void | |
4342 | 158 visit_fcn_handle (tree_fcn_handle&) = 0; |
159 | |
160 virtual void | |
2123 | 161 visit_parameter_list (tree_parameter_list&) = 0; |
162 | |
163 virtual void | |
164 visit_postfix_expression (tree_postfix_expression&) = 0; | |
165 | |
166 virtual void | |
167 visit_prefix_expression (tree_prefix_expression&) = 0; | |
168 | |
169 virtual void | |
4207 | 170 visit_return_command (tree_return_command&) = 0; |
2123 | 171 |
172 virtual void | |
173 visit_return_list (tree_return_list&) = 0; | |
174 | |
175 virtual void | |
2969 | 176 visit_simple_assignment (tree_simple_assignment&) = 0; |
2123 | 177 |
178 virtual void | |
179 visit_statement (tree_statement&) = 0; | |
180 | |
181 virtual void | |
182 visit_statement_list (tree_statement_list&) = 0; | |
183 | |
184 virtual void | |
185 visit_try_catch_command (tree_try_catch_command&) = 0; | |
186 | |
187 virtual void | |
188 visit_unwind_protect_command (tree_unwind_protect_command&) = 0; | |
189 | |
190 virtual void | |
191 visit_while_command (tree_while_command&) = 0; | |
192 | |
3484 | 193 virtual void |
194 visit_do_until_command (tree_do_until_command&) = 0; | |
195 | |
2123 | 196 protected: |
197 | |
198 tree_walker (void) { } | |
199 | |
200 virtual ~tree_walker (void) { } | |
201 | |
202 private: | |
203 | |
204 // No copying! | |
205 | |
206 tree_walker (const tree_walker&); | |
207 | |
208 tree_walker& operator = (const tree_walker&); | |
209 }; | |
210 | |
211 #endif |