(cond bool)
| 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] } |
| 295 | func (e exprDesc) hasJumps() bool { return e.t != e.f } |
| 296 | func (e exprDesc) isNumeral() bool { return e.kind == kindNumber && e.t == noJump && e.f == noJump } |
no outgoing calls
no test coverage detected