| 317 | } |
| 318 | |
| 319 | static LIST * function_get_variable( JAM_FUNCTION * function, FRAME * frame, |
| 320 | int32_t idx ) |
| 321 | { |
| 322 | return list_copy( var_get( frame->module, function->constants[ idx ] ) ); |
| 323 | } |
| 324 | |
| 325 | static void function_set_variable( JAM_FUNCTION * function, FRAME * frame, |
| 326 | int32_t idx, LIST * value ) |
no test coverage detected