()
| 400 | } |
| 401 | |
| 402 | func (d *Decoder) pop() *stack { |
| 403 | s := d.stk |
| 404 | if s != nil { |
| 405 | d.stk = s.next |
| 406 | s.next = d.free |
| 407 | d.free = s |
| 408 | } |
| 409 | return s |
| 410 | } |
| 411 | |
| 412 | // Record that after the current element is finished |
| 413 | // (that element is already pushed on the stack) |
no outgoing calls
no test coverage detected