** Convert a VKSTR to a VK */
| 772 | ** Convert a VKSTR to a VK |
| 773 | */ |
| 774 | static int str2K (FuncState *fs, expdesc *e) { |
| 775 | lua_assert(e->k == VKSTR); |
| 776 | e->u.info = stringK(fs, e->u.strval); |
| 777 | e->k = VK; |
| 778 | return e->u.info; |
| 779 | } |
| 780 | |
| 781 | |
| 782 | /* |
no test coverage detected