(values ...LValue)
| 2002 | } |
| 2003 | |
| 2004 | func (ls *LState) Yield(values ...LValue) int { |
| 2005 | ls.SetTop(0) |
| 2006 | for _, lv := range values { |
| 2007 | ls.Push(lv) |
| 2008 | } |
| 2009 | return -1 |
| 2010 | } |
| 2011 | |
| 2012 | func (ls *LState) XMoveTo(other *LState, n int) { |
| 2013 | if ls == other { |