setLabel points a label to the next instruction.
(l int)
| 62 | |
| 63 | // setLabel points a label to the next instruction. |
| 64 | func (c *codegen) setLabel(l int) { |
| 65 | c.l[l] = c.pc() + 1 |
| 66 | } |
| 67 | |
| 68 | // pc returns the program offset of the last instruction. |
| 69 | func (c *codegen) pc() int { |
no test coverage detected