(lua: LuaWasm, typeExtensions: OrderedExtension[], address: number, parent?: Thread)
| 34 | private readonly parent?: Thread |
| 35 | |
| 36 | public constructor(lua: LuaWasm, typeExtensions: OrderedExtension[], address: number, parent?: Thread) { |
| 37 | this.lua = lua |
| 38 | this.typeExtensions = typeExtensions |
| 39 | this.address = address |
| 40 | this.parent = parent |
| 41 | } |
| 42 | |
| 43 | public newThread(): Thread { |
| 44 | const address = this.lua.lua_newthread(this.address) |
nothing calls this directly
no outgoing calls
no test coverage detected