(symbol)
| 51750 | return getUnionType(ts.arrayFrom(typeofEQFacts.keys(), getStringLiteralType)); |
| 51751 | } |
| 51752 | function createTypeParameter(symbol) { |
| 51753 | var type = createType(262144 /* TypeFlags.TypeParameter */); |
| 51754 | if (symbol) |
| 51755 | type.symbol = symbol; |
| 51756 | return type; |
| 51757 | } |
| 51758 | // A reserved member name starts with two underscores, but the third character cannot be an underscore, |
| 51759 | // @, or #. A third underscore indicates an escaped form of an identifier that started |
| 51760 | // with at least two underscores. The @ character indicates that the name is denoted by a well known ES |
no test coverage detected
searching dependent graphs…