| 25 | |
| 26 | |
| 27 | static void check_defined( LIST * class_names ) |
| 28 | { |
| 29 | LISTITER iter = list_begin( class_names ); |
| 30 | LISTITER const end = list_end( class_names ); |
| 31 | for ( ; iter != end; iter = list_next( iter ) ) |
| 32 | { |
| 33 | if ( !hash_find( classes, list_item( iter ) ) ) |
| 34 | { |
| 35 | out_printf( "Class %s is not defined\n", object_str( list_item( iter ) ) |
| 36 | ); |
| 37 | abort(); |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | |
| 43 | static OBJECT * class_module_name( OBJECT * declared_name ) |
no test coverage detected