comparison src/pt-stmt.h @ 2988:daa1ed1f5462

[project @ 1997-05-16 07:23:15 by jwe]
author jwe
date Fri, 16 May 1997 07:23:17 +0000
parents 20f5cec4f11c
children 0689afb1d001
comparison
equal deleted inserted replaced
2987:ae20b3f37f5e 2988:daa1ed1f5462
89 // Expression to evaluate. 89 // Expression to evaluate.
90 tree_expression *expr; 90 tree_expression *expr;
91 91
92 // Print result of eval for this command? 92 // Print result of eval for this command?
93 bool print_flag; 93 bool print_flag;
94
95 // No copying!
96
97 tree_statement (const tree_statement&);
98
99 tree_statement& operator = (const tree_statement&);
94 }; 100 };
95 101
96 // A list of statements to evaluate. 102 // A list of statements to evaluate.
97 103
98 class 104 class
123 129
124 private: 130 private:
125 131
126 // Does this list of statements make up the body of a function? 132 // Does this list of statements make up the body of a function?
127 bool function_body; 133 bool function_body;
134
135 // No copying!
136
137 tree_statement_list (const tree_statement_list&);
138
139 tree_statement_list& operator = (const tree_statement_list&);
128 }; 140 };
129 141
130 #endif 142 #endif
131 143
132 /* 144 /*