| 323 | } |
| 324 | |
| 325 | static void function_set_variable( JAM_FUNCTION * function, FRAME * frame, |
| 326 | int32_t idx, LIST * value ) |
| 327 | { |
| 328 | var_set( frame->module, function->constants[ idx ], value, VAR_SET ); |
| 329 | } |
| 330 | |
| 331 | static LIST * function_swap_variable( JAM_FUNCTION * function, FRAME * frame, |
| 332 | int32_t idx, LIST * value ) |
no test coverage detected