(blabel int, pos ast.PositionHolder)
| 571 | } |
| 572 | |
| 573 | func (fc *funcContext) EnterBlock(blabel int, pos ast.PositionHolder) { |
| 574 | fc.Block = newCodeBlock(newVarNamePool(fc.RegTop()), blabel, fc.Block, pos, fc.gotosCount) |
| 575 | fc.Blocks = append(fc.Blocks, fc.Block) |
| 576 | } |
| 577 | |
| 578 | func (fc *funcContext) CloseUpvalues() int { |
| 579 | n := -1 |
no test coverage detected