* Save current parenthesis nesting depth in topmost stack entry. */
| 158 | * Save current parenthesis nesting depth in topmost stack entry. |
| 159 | */ |
| 160 | void |
| 161 | conditional_stack_set_paren_depth(ConditionalStack cstack, int depth) |
| 162 | { |
| 163 | Assert(!conditional_stack_empty(cstack)); |
| 164 | cstack->head->paren_depth = depth; |
| 165 | } |
| 166 | |
| 167 | /* |
| 168 | * Fetch last-recorded parenthesis nesting depth from topmost stack entry. |
no test coverage detected