| 244 | } |
| 245 | |
| 246 | Module * findRttiModule ( smart_ptr<Program> THAT_PROGRAM, const char * name, Context *, LineInfoArg *) { |
| 247 | name = name ? name : ""; |
| 248 | auto found = THAT_PROGRAM->library.findModule(name); |
| 249 | return found ? found : Module::require(name); |
| 250 | } |
| 251 | |
| 252 | AnnotationPtr module_find_annotation ( const Module* module, const char *name ) { |
| 253 | return module->findAnnotation(name); |
nothing calls this directly
no test coverage detected