** Creates a new string and anchors it in scanner's table. */
| 154 | ** Creates a new string and anchors it in scanner's table. |
| 155 | */ |
| 156 | TString *luaX_newstring (LexState *ls, const char *str, size_t l) { |
| 157 | return anchorstr(ls, luaS_newlstr(ls->L, str, l)); |
| 158 | } |
| 159 | |
| 160 | |
| 161 | /* |
no test coverage detected