Mercurial > hg > octave-lyh
comparison src/pt-binop.h @ 3523:b80bbb43a1a9
[project @ 2000-02-02 10:25:52 by jwe]
author | jwe |
---|---|
date | Wed, 02 Feb 2000 10:26:25 +0000 |
parents | 1aeb8869e464 |
children | f9ea3dcf58ee |
comparison
equal
deleted
inserted
replaced
3522:bd422cf62f0c | 3523:b80bbb43a1a9 |
---|---|
69 | 69 |
70 octave_value_list rvalue (int nargout); | 70 octave_value_list rvalue (int nargout); |
71 | 71 |
72 void eval_error (void); | 72 void eval_error (void); |
73 | 73 |
74 string oper (void) const; | 74 std::string oper (void) const; |
75 | 75 |
76 tree_expression *lhs (void) { return op_lhs; } | 76 tree_expression *lhs (void) { return op_lhs; } |
77 tree_expression *rhs (void) { return op_rhs; } | 77 tree_expression *rhs (void) { return op_rhs; } |
78 | 78 |
79 void accept (tree_walker& tw); | 79 void accept (tree_walker& tw); |
124 | 124 |
125 octave_value rvalue (void); | 125 octave_value rvalue (void); |
126 | 126 |
127 octave_value_list rvalue (int nargout); | 127 octave_value_list rvalue (int nargout); |
128 | 128 |
129 string oper (void) const; | 129 std::string oper (void) const; |
130 | 130 |
131 private: | 131 private: |
132 | 132 |
133 // The type of the expression. | 133 // The type of the expression. |
134 type etype; | 134 type etype; |