Getter for stack size.
| 59 | |
| 60 | /// Getter for stack size. |
| 61 | size_t size() const noexcept { return ValueStack.size(); } |
| 62 | |
| 63 | /// Unsafe getter for the top entry of the stack. |
| 64 | Value &getTop() { return ValueStack.back(); } |
no outgoing calls
no test coverage detected