| 305 | } |
| 306 | |
| 307 | static void function_set_variable( JAM_FUNCTION * function, FRAME * frame, |
| 308 | int idx, LIST * value ) |
| 309 | { |
| 310 | var_set( frame->module, function->constants[ idx ], value, VAR_SET ); |
| 311 | } |
| 312 | |
| 313 | static LIST * function_swap_variable( JAM_FUNCTION * function, FRAME * frame, |
| 314 | int idx, LIST * value ) |
no test coverage detected