(acap, hcap int)
| 1606 | } |
| 1607 | |
| 1608 | func (ls *LState) CreateTable(acap, hcap int) *LTable { |
| 1609 | return newLTable(acap, hcap) |
| 1610 | } |
| 1611 | |
| 1612 | // NewThread returns a new LState that shares with the original state all global objects. |
| 1613 | // If the original state has context.Context, the new state has a new child context of the original state and this function returns its cancel function. |
no test coverage detected