(message string)
| 284 | } |
| 285 | |
| 286 | func (f *function) semanticError(message string) { |
| 287 | f.p.t = 0 // remove "near to" from final message |
| 288 | f.p.syntaxError(message) |
| 289 | } |
| 290 | |
| 291 | func (f *function) breakLabel() { f.FindGotos(f.MakeLabel("break", 0)) } |
| 292 | func (f *function) unreachable() { f.assert(false) } |
no test coverage detected