Unsafe getter for the top N value entries of the stack.
| 71 | |
| 72 | /// Unsafe getter for the top N value entries of the stack. |
| 73 | Span<Value> getTopSpan(uint32_t N) { |
| 74 | return Span<Value>(ValueStack.end() - N, N); |
| 75 | } |
| 76 | |
| 77 | /// Push a new value entry to the stack. |
| 78 | template <typename T> void push(T &&Val) { |
no test coverage detected