(L *LState)
| 433 | } |
| 434 | |
| 435 | func baseToString(L *LState) int { |
| 436 | v1 := L.CheckAny(1) |
| 437 | L.Push(L.ToStringMeta(v1)) |
| 438 | return 1 |
| 439 | } |
| 440 | |
| 441 | func baseType(L *LState) int { |
| 442 | L.Push(LString(L.CheckAny(1).Type().String())) |
nothing calls this directly
no test coverage detected
searching dependent graphs…