** Convert a VKSTR to a VK */
| 735 | ** Convert a VKSTR to a VK |
| 736 | */ |
| 737 | static void str2K (FuncState *fs, expdesc *e) { |
| 738 | lua_assert(e->k == VKSTR); |
| 739 | e->u.info = stringK(fs, e->u.strval); |
| 740 | e->k = VK; |
| 741 | } |
| 742 | |
| 743 | |
| 744 | /* |
no test coverage detected