PushThread pushes the thread l onto the stack. It returns true if l is the main thread of its state. http://www.lua.org/manual/5.2/manual.html#lua_pushthread
()
| 975 | // |
| 976 | // http://www.lua.org/manual/5.2/manual.html#lua_pushthread |
| 977 | func (l *State) PushThread() bool { |
| 978 | l.apiPush(l) |
| 979 | return l.global.mainThread == l |
| 980 | } |
| 981 | |
| 982 | // Global pushes onto the stack the value of the global name. |
| 983 | // |
no test coverage detected