| 4186 | } |
| 4187 | |
| 4188 | TypeDeclPtr parseTypeFromMangledName ( const char * & ch, const ModuleLibrary & library, Module * thisModule ) { |
| 4189 | MangledNameParser parser; |
| 4190 | return parser.parseTypeFromMangledName(ch, library, thisModule); |
| 4191 | } |
| 4192 | |
| 4193 | bool hasImplicit ( const TypeDeclPtr & type ) { |
| 4194 | if ( type->implicit ) return true; |
no test coverage detected