()
| 289 | } |
| 290 | |
| 291 | func (f *function) breakLabel() { f.FindGotos(f.MakeLabel("break", 0)) } |
| 292 | func (f *function) unreachable() { f.assert(false) } |
| 293 | func (f *function) assert(cond bool) { f.p.l.assert(cond) } |
| 294 | func (f *function) Instruction(e exprDesc) *instruction { return &f.f.code[e.info] } |
no test coverage detected