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