| 395 | } |
| 396 | |
| 397 | static LIST * function_get_named_variable( JAM_FUNCTION * function, |
| 398 | FRAME * frame, OBJECT * name ) |
| 399 | { |
| 400 | int const idx = get_argument_index( object_str( name ) ); |
| 401 | return idx == -1 |
| 402 | ? list_copy( var_get( frame->module, name ) ) |
| 403 | : list_copy( lol_get( frame->args, idx ) ); |
| 404 | } |
| 405 | |
| 406 | static void function_set_named_variable( JAM_FUNCTION * function, FRAME * frame, |
| 407 | OBJECT * name, LIST * value) |
no test coverage detected