** Add a boolean to list of constants and return its index. */
| 489 | ** Add a boolean to list of constants and return its index. |
| 490 | */ |
| 491 | static int boolK (FuncState *fs, int b) { |
| 492 | TValue o; |
| 493 | setbvalue(&o, b); |
| 494 | return addk(fs, &o, &o); /* use boolean itself as key */ |
| 495 | } |
| 496 | |
| 497 | |
| 498 | /* |