()
| 94081 | } |
| 94082 | } |
| 94083 | function enableSubstitutionForClassAliases() { |
| 94084 | if ((enabledSubstitutions & 1 /* TypeScriptSubstitutionFlags.ClassAliases */) === 0) { |
| 94085 | enabledSubstitutions |= 1 /* TypeScriptSubstitutionFlags.ClassAliases */; |
| 94086 | // We need to enable substitutions for identifiers. This allows us to |
| 94087 | // substitute class names inside of a class declaration. |
| 94088 | context.enableSubstitution(79 /* SyntaxKind.Identifier */); |
| 94089 | // Keep track of class aliases. |
| 94090 | classAliases = []; |
| 94091 | } |
| 94092 | } |
| 94093 | function enableSubstitutionForNamespaceExports() { |
| 94094 | if ((enabledSubstitutions & 2 /* TypeScriptSubstitutionFlags.NamespaceExports */) === 0) { |
| 94095 | enabledSubstitutions |= 2 /* TypeScriptSubstitutionFlags.NamespaceExports */; |
no outgoing calls
no test coverage detected
searching dependent graphs…