Removes an expression from the stack, and returns it.
| 136 | |
| 137 | /// Removes an expression from the stack, and returns it. |
| 138 | ObjectQuery* pop() noexcept { |
| 139 | auto* expression = stack.back().expression; |
| 140 | stack.pop_back(); |
| 141 | return expression; |
| 142 | } |
| 143 | }; |
| 144 | |
| 145 |