newLabel creates a new label to jump to.
()
| 55 | |
| 56 | // newLabel creates a new label to jump to. |
| 57 | func (c *codegen) newLabel() (l int) { |
| 58 | l = len(c.l) |
| 59 | c.l = append(c.l, -1) |
| 60 | return |
| 61 | } |
| 62 | |
| 63 | // setLabel points a label to the next instruction. |
| 64 | func (c *codegen) setLabel(l int) { |
no outgoing calls
no test coverage detected