** Check whether expression 'e' is a small literal string */
| 1218 | ** Check whether expression 'e' is a small literal string |
| 1219 | */ |
| 1220 | static int isKstr (FuncState *fs, expdesc *e) { |
| 1221 | return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_B && |
| 1222 | ttisshrstring(&fs->f->k[e->u.info])); |
| 1223 | } |
| 1224 | |
| 1225 | /* |
| 1226 | ** Check whether expression 'e' is a literal integer. |