Push a vector of values to the stack.
| 81 | |
| 82 | /// Push a vector of values to the stack. |
| 83 | void pushValVec(const std::vector<Value> &ValVec) { |
| 84 | ValueStack.insert(ValueStack.end(), ValVec.begin(), ValVec.end()); |
| 85 | } |
| 86 | |
| 87 | /// Unsafe pop and return the top entry. |
| 88 | Value pop() { |
no test coverage detected