| 422 | } |
| 423 | |
| 424 | static void function_default_named_variable( JAM_FUNCTION * function, |
| 425 | FRAME * frame, OBJECT * name, LIST * value ) |
| 426 | { |
| 427 | var_set( frame->module, name, value, VAR_DEFAULT ); |
| 428 | } |
| 429 | |
| 430 | static LIST * function_call_rule( JAM_FUNCTION * function, FRAME * frame, |
| 431 | STACK * s, int n_args, char const * unexpanded, OBJECT * file, int line ) |
no test coverage detected