** Check whether expression 'e' is a small literal string */
| 1201 | ** Check whether expression 'e' is a small literal string |
| 1202 | */ |
| 1203 | static int isKstr (FuncState *fs, expdesc *e) { |
| 1204 | return (e->k == VK && !hasjumps(e) && e->u.info <= MAXARG_B && |
| 1205 | ttisshrstring(&fs->f->k[e->u.info])); |
| 1206 | } |
| 1207 | |
| 1208 | /* |
| 1209 | ** Check whether expression 'e' is a literal integer. |