()
| 725 | } |
| 726 | |
| 727 | func (ls *LState) closeAllUpvalues() { // +inline-start |
| 728 | for cf := ls.currentFrame; cf != nil; cf = cf.Parent { |
| 729 | if !cf.Fn.IsG { |
| 730 | ls.closeUpvalues(cf.LocalBase) |
| 731 | } |
| 732 | } |
| 733 | } // +inline-end |
| 734 | |
| 735 | func (ls *LState) raiseError(level int, format string, args ...interface{}) { |
| 736 | if !ls.hasErrorFunc { |
no test coverage detected