** Convert a VKSTR to a VK */
| 722 | ** Convert a VKSTR to a VK |
| 723 | */ |
| 724 | static void str2K (FuncState *fs, expdesc *e) { |
| 725 | lua_assert(e->k == VKSTR); |
| 726 | e->u.info = stringK(fs, e->u.strval); |
| 727 | e->k = VK; |
| 728 | } |
| 729 | |
| 730 | |
| 731 | /* |
no test coverage detected