()
| 899 | } |
| 900 | |
| 901 | func (ls *LState) currentEnv() *LTable { |
| 902 | return ls.Env |
| 903 | /* |
| 904 | if ls.currentFrame == nil { |
| 905 | return ls.Env |
| 906 | } |
| 907 | return ls.currentFrame.Fn.Env |
| 908 | */ |
| 909 | } |
| 910 | |
| 911 | func (ls *LState) rkValue(idx int) LValue { |
| 912 | /* |
no outgoing calls
no test coverage detected