** Get the constant value from a constant expression */
| 72 | ** Get the constant value from a constant expression |
| 73 | */ |
| 74 | static TValue *const2val (FuncState *fs, const expdesc *e) { |
| 75 | lua_assert(e->k == VCONST); |
| 76 | return &fs->ls->dyd->actvar.arr[e->u.info].k; |
| 77 | } |
| 78 | |
| 79 | |
| 80 | /* |
no outgoing calls
no test coverage detected