| 644 | }; |
| 645 | |
| 646 | TypeDeclPtr parseMangledNameFn ( const char * txt, ModuleGroup & lib, Module * thisModule, Context * context, LineInfoArg * at ) { |
| 647 | if ( !txt ) context->throw_error_at(at, "can't parse empty mangled name"); |
| 648 | MangledNameParserCtx parser; |
| 649 | parser.context = context; |
| 650 | parser.at = at; |
| 651 | return parser.parseTypeFromMangledName(txt, lib, thisModule); |
| 652 | } |
| 653 | |
| 654 | void forceAtRaw ( Expression * expr, const LineInfo & at ) { |
| 655 | forceAt(expr, at); |
nothing calls this directly
no test coverage detected