(values ...LValue)
| 2215 | } |
| 2216 | |
| 2217 | func (ls *LState) Yield(values ...LValue) int { |
| 2218 | ls.SetTop(0) |
| 2219 | for _, lv := range values { |
| 2220 | ls.Push(lv) |
| 2221 | } |
| 2222 | return -1 |
| 2223 | } |
| 2224 | |
| 2225 | func (ls *LState) XMoveTo(other *LState, n int) { |
| 2226 | if ls == other { |