| 234 | } |
| 235 | |
| 236 | static void print_class_stats( void * xstats, void * data ) |
| 237 | { |
| 238 | struct module_stats * stats = (struct module_stats *)xstats; |
| 239 | class_module_stat( stats->rules_stats, stats->module_name, "rules" ); |
| 240 | class_module_stat( stats->variables_stats, stats->module_name, "variables" ); |
| 241 | class_module_stat( stats->variable_indices_stats, stats->module_name, "fixed variables" ); |
| 242 | class_module_stat( stats->imported_modules_stats, stats->module_name, "imported modules" ); |
| 243 | } |
| 244 | |
| 245 | |
| 246 | static void delete_module_( void * xmodule, void * data ) |
nothing calls this directly
no test coverage detected