(top int)
| 603 | } |
| 604 | |
| 605 | func (fc *funcContext) SetRegTop(top int) { |
| 606 | if top > maxRegisters { |
| 607 | raiseCompileError(fc, fc.Proto.LineDefined, "too many local variables") |
| 608 | } |
| 609 | fc.regTop = top |
| 610 | } |
| 611 | |
| 612 | func (fc *funcContext) RegTop() int { |
| 613 | return fc.regTop |
no test coverage detected