| 718 | |
| 719 | |
| 720 | static const char *formatvarinfo (lua_State *L, const char *kind, |
| 721 | const char *name) { |
| 722 | if (kind == NULL) |
| 723 | return ""; /* no information */ |
| 724 | else |
| 725 | return luaO_pushfstring(L, " (%s '%s')", kind, name); |
| 726 | } |
| 727 | |
| 728 | /* |
| 729 | ** Build a string with a "description" for the value 'o', such as |
no test coverage detected