(L: LuaState)
| 181 | } |
| 182 | |
| 183 | public stateToThread(L: LuaState): Thread { |
| 184 | return L === this.parent?.address ? this.parent : new Thread(this.lua, this.typeExtensions, L, this.parent || this) |
| 185 | } |
| 186 | |
| 187 | public pushValue(rawValue: unknown, userdata?: unknown): void { |
| 188 | const decoratedValue = this.getValueDecorations(rawValue) |
no outgoing calls
no test coverage detected