Pushes an expression and the current depth to the stack.
| 130 | |
| 131 | /// Pushes an expression and the current depth to the stack. |
| 132 | void push(ObjectQuery* expression) |
| 133 | { |
| 134 | stack.push_back(Element{expression, depth}); |
| 135 | } |
| 136 | |
| 137 | /// Removes an expression from the stack, and returns it. |
| 138 | ObjectQuery* pop() noexcept { |
no outgoing calls
no test coverage detected