(name string, line, pc int)
| 167 | } |
| 168 | |
| 169 | func (f *function) MakeGoto(name string, line, pc int) { |
| 170 | f.p.pendingGotos = append(f.p.pendingGotos, label{name: name, line: line, pc: pc, activeVariableCount: f.activeVariableCount}) |
| 171 | f.findLabel(len(f.p.pendingGotos) - 1) |
| 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}) |
no test coverage detected