| 440 | } |
| 441 | |
| 442 | static void function_default_named_variable( JAM_FUNCTION * function, |
| 443 | FRAME * frame, OBJECT * name, LIST * value ) |
| 444 | { |
| 445 | var_set( frame->module, name, value, VAR_DEFAULT ); |
| 446 | } |
| 447 | |
| 448 | static LIST * function_call_rule( JAM_FUNCTION * function, FRAME * frame, |
| 449 | STACK * s, int32_t n_args, char const * unexpanded, OBJECT * file, int32_t line ) |
no test coverage detected