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