** Check whether expression 'e' is a short literal string */
| 1263 | ** Check whether expression 'e' is a short literal string |
| 1264 | */ |
| 1265 | static int isKstr (FuncState *fs, expdesc *e) { |
| 1266 | return (e->k == VK && !hasjumps(e) && e->u.info <= MAXINDEXRK && |
| 1267 | ttisshrstring(&fs->f->k[e->u.info])); |
| 1268 | } |
| 1269 | |
| 1270 | /* |
| 1271 | ** Check whether expression 'e' is a literal integer. |