| 737 | } |
| 738 | |
| 739 | ExprCallFactory * Module::findCall ( const string & na ) const { |
| 740 | auto it = callThis.find(na); |
| 741 | return it != callThis.end() ? &it->second : nullptr; |
| 742 | } |
| 743 | |
| 744 | static bool appendBuiltinModuleContent ( Module * target, ProgramPtr program, const string & modName ) { |
| 745 | if ( !program ) { |
no test coverage detected