| 299 | } |
| 300 | |
| 301 | static LIST * function_get_variable( JAM_FUNCTION * function, FRAME * frame, |
| 302 | int idx ) |
| 303 | { |
| 304 | return list_copy( var_get( frame->module, function->constants[ idx ] ) ); |
| 305 | } |
| 306 | |
| 307 | static void function_set_variable( JAM_FUNCTION * function, FRAME * frame, |
| 308 | int idx, LIST * value ) |
no test coverage detected