()
| 597 | } |
| 598 | |
| 599 | func (fc *funcContext) EndScope() { |
| 600 | for _, vr := range fc.Block.LocalVars.List() { |
| 601 | fc.Proto.DbgLocals[vr.Index].EndPc = fc.Code.LastPC() |
| 602 | } |
| 603 | } |
| 604 | |
| 605 | func (fc *funcContext) SetRegTop(top int) { |
| 606 | if top > maxRegisters { |
no test coverage detected