()
| 60767 | return deferredGlobalExtractSymbol === unknownSymbol ? undefined : deferredGlobalExtractSymbol; |
| 60768 | } |
| 60769 | function getGlobalOmitSymbol() { |
| 60770 | // We always report an error, so cache a result in the event we could not resolve the symbol to prevent reporting it multiple times |
| 60771 | deferredGlobalOmitSymbol || (deferredGlobalOmitSymbol = getGlobalTypeAliasSymbol("Omit", /*arity*/ 2, /*reportErrors*/ true) || unknownSymbol); |
| 60772 | return deferredGlobalOmitSymbol === unknownSymbol ? undefined : deferredGlobalOmitSymbol; |
| 60773 | } |
| 60774 | function getGlobalAwaitedSymbol(reportErrors) { |
| 60775 | // Only cache `unknownSymbol` if we are reporting errors so that we don't report the error more than once. |
| 60776 | deferredGlobalAwaitedSymbol || (deferredGlobalAwaitedSymbol = getGlobalTypeAliasSymbol("Awaited", /*arity*/ 1, reportErrors) || (reportErrors ? unknownSymbol : undefined)); |
no test coverage detected