(name string, line int)
| 172 | } |
| 173 | |
| 174 | func (f *function) MakeLabel(name string, line int) int { |
| 175 | f.p.activeLabels = append(f.p.activeLabels, label{name: name, line: line, pc: len(f.f.code), activeVariableCount: f.activeVariableCount}) |
| 176 | return len(f.p.activeLabels) - 1 |
| 177 | } |
| 178 | |
| 179 | func (f *function) closeGoto(i int, l label) { |
| 180 | g := f.p.pendingGotos[i] |
no outgoing calls
no test coverage detected