| 341 | |
| 342 | |
| 343 | static void bind_variables_for_rule( void * xrule, void * xdata ) |
| 344 | { |
| 345 | RULE * rule = (RULE *)xrule; |
| 346 | struct bind_vars_t * data = (struct bind_vars_t *)xdata; |
| 347 | if ( rule->procedure && rule->module == data->module ) |
| 348 | rule->procedure = function_bind_variables( rule->procedure, |
| 349 | data->module, &data->counter ); |
| 350 | } |
| 351 | |
| 352 | |
| 353 | void module_bind_variables( struct module_t * m ) |
nothing calls this directly
no test coverage detected