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