| 104 | } |
| 105 | |
| 106 | IOINLINE int Stack_popMarkPoint_(Stack *self, intptr_t mark) { |
| 107 | while (self->lastMark && self->lastMark != mark) { |
| 108 | Stack_popMark(self); |
| 109 | } |
| 110 | |
| 111 | if (self->lastMark != mark) { |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | Stack_popMark(self); |
| 116 | return 1; |
| 117 | } |
| 118 | |
| 119 | IOINLINE void Stack_clearTop(Stack *self) { |
| 120 | Stack_popMark(self); |
no test coverage detected