Mercurial > hg > octave-lyh
comparison src/pt-walk.h @ 2891:1a30f46e1870
[project @ 1997-04-28 01:49:00 by jwe]
author | jwe |
---|---|
date | Mon, 28 Apr 1997 02:01:22 +0000 |
parents | b4a9f014a8ea |
children | 194b50e4725b |
comparison
equal
deleted
inserted
replaced
2890:42901f9a9266 | 2891:1a30f46e1870 |
---|---|
24 #define octave_tree_walker_h 1 | 24 #define octave_tree_walker_h 1 |
25 | 25 |
26 class tree_argument_list; | 26 class tree_argument_list; |
27 class tree_binary_expression; | 27 class tree_binary_expression; |
28 class tree_break_command; | 28 class tree_break_command; |
29 class tree_builtin; | |
30 class tree_colon_expression; | 29 class tree_colon_expression; |
31 class tree_continue_command; | 30 class tree_continue_command; |
32 class tree_decl_command; | 31 class tree_decl_command; |
33 class tree_decl_elt; | 32 class tree_decl_elt; |
34 class tree_decl_init_list; | 33 class tree_decl_init_list; |
35 class tree_for_command; | 34 class tree_for_command; |
36 class tree_function; | 35 class octave_user_function; |
37 class tree_identifier; | 36 class tree_identifier; |
38 class tree_if_clause; | 37 class tree_if_clause; |
39 class tree_if_command; | 38 class tree_if_command; |
40 class tree_if_command_list; | 39 class tree_if_command_list; |
41 class tree_switch_case; | 40 class tree_switch_case; |
82 | 81 |
83 virtual void | 82 virtual void |
84 visit_break_command (tree_break_command&) = 0; | 83 visit_break_command (tree_break_command&) = 0; |
85 | 84 |
86 virtual void | 85 virtual void |
87 visit_builtin (tree_builtin&) = 0; | |
88 | |
89 virtual void | |
90 visit_colon_expression (tree_colon_expression&) = 0; | 86 visit_colon_expression (tree_colon_expression&) = 0; |
91 | 87 |
92 virtual void | 88 virtual void |
93 visit_continue_command (tree_continue_command&) = 0; | 89 visit_continue_command (tree_continue_command&) = 0; |
94 | 90 |
103 | 99 |
104 virtual void | 100 virtual void |
105 visit_for_command (tree_for_command&) = 0; | 101 visit_for_command (tree_for_command&) = 0; |
106 | 102 |
107 virtual void | 103 virtual void |
108 visit_function (tree_function&) = 0; | 104 visit_octave_user_function (octave_user_function&) = 0; |
109 | 105 |
110 virtual void | 106 virtual void |
111 visit_identifier (tree_identifier&) = 0; | 107 visit_identifier (tree_identifier&) = 0; |
112 | 108 |
113 virtual void | 109 virtual void |