| 709 | |
| 710 | |
| 711 | static const char *formatvarinfo (lua_State *L, const char *kind, |
| 712 | const char *name) { |
| 713 | if (kind == NULL) |
| 714 | return ""; /* no information */ |
| 715 | else |
| 716 | return luaO_pushfstring(L, " (%s '%s')", kind, name); |
| 717 | } |
| 718 | |
| 719 | /* |
| 720 | ** Build a string with a "description" for the value 'o', such as |
no test coverage detected