| 719 | |
| 720 | |
| 721 | static void listfield(LexState *ls, struct ConsControl *cc) { |
| 722 | /* listfield -> exp */ |
| 723 | expr(ls, &cc->v); |
| 724 | checklimit(ls->fs, cc->na, MAX_INT, "items in a constructor"); |
| 725 | cc->na++; |
| 726 | cc->tostore++; |
| 727 | } |
| 728 | |
| 729 | |
| 730 | static void field(LexState *ls, struct ConsControl *cc) { |
no test coverage detected