| 76 | |
| 77 | /// Push a new value entry to the stack. |
| 78 | template <typename T> void push(T &&Val) { |
| 79 | ValueStack.push_back(std::forward<T>(Val)); |
| 80 | } |
| 81 | |
| 82 | /// Push a vector of values to the stack. |
| 83 | void pushValVec(const std::vector<Value> &ValVec) { |
no outgoing calls