(name, reportErrors)
| 60652 | return getGlobalSymbol(name, 111551 /* SymbolFlags.Value */, reportErrors ? ts.Diagnostics.Cannot_find_global_value_0 : undefined); |
| 60653 | } |
| 60654 | function getGlobalTypeSymbol(name, reportErrors) { |
| 60655 | return getGlobalSymbol(name, 788968 /* SymbolFlags.Type */, reportErrors ? ts.Diagnostics.Cannot_find_global_type_0 : undefined); |
| 60656 | } |
| 60657 | function getGlobalTypeAliasSymbol(name, arity, reportErrors) { |
| 60658 | var symbol = getGlobalSymbol(name, 788968 /* SymbolFlags.Type */, reportErrors ? ts.Diagnostics.Cannot_find_global_type_0 : undefined); |
| 60659 | if (symbol) { |
no test coverage detected
searching dependent graphs…