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