(name string)
| 452 | } |
| 453 | |
| 454 | func (fc *funcContext) GetNamedLabel(name string) *gotoLabelDesc { |
| 455 | return fc.Block.GetLabel(name) |
| 456 | } |
| 457 | |
| 458 | func (fc *funcContext) ResolveGoto(from, to *gotoLabelDesc, index int) { |
| 459 | if from.NumActiveLocalVars < to.NumActiveLocalVars { |