()
| 170 | } |
| 171 | |
| 172 | func (b *Builder) peekStack() stackItem { |
| 173 | if len(b.stack) == 0 { |
| 174 | panic("Stack underflow") |
| 175 | } |
| 176 | return b.stack[len(b.stack)-1] |
| 177 | } |
| 178 | |
| 179 | func (b *Builder) removeInstruction(at int) { |
| 180 | if at == len(b.instructions)-1 { |