| 413 | } |
| 414 | |
| 415 | static LIST * function_get_named_variable( JAM_FUNCTION * function, |
| 416 | FRAME * frame, OBJECT * name ) |
| 417 | { |
| 418 | int32_t const idx = get_argument_index( object_str( name ) ); |
| 419 | return idx == -1 |
| 420 | ? list_copy( var_get( frame->module, name ) ) |
| 421 | : list_copy( lol_get( frame->args, idx ) ); |
| 422 | } |
| 423 | |
| 424 | static void function_set_named_variable( JAM_FUNCTION * function, FRAME * frame, |
| 425 | OBJECT * name, LIST * value) |
no test coverage detected