| 243 | // Node that removes value left on top of the stack by child node |
| 244 | |
| 245 | NodePopOp::NodePopOp() |
| 246 | { |
| 247 | first = TakeLastNode(); |
| 248 | nodeType = typeNodePopOp; |
| 249 | } |
| 250 | NodePopOp::~NodePopOp() |
| 251 | { |
| 252 | } |
nothing calls this directly
no test coverage detected