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