We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a3dd89 commit edd926cCopy full SHA for edd926c
src/compiler/checker.ts
@@ -11687,7 +11687,7 @@ module ts {
11687
/** Serializes an EntityName (with substitutions) to an appropriate JS constructor value. Used by the __metadata decorator. */
11688
function serializeEntityName(node: EntityName, getGeneratedNameForNode: (Node: Node) => string, fallbackPath?: string[]): string {
11689
if (node.kind === SyntaxKind.Identifier) {
11690
- getResolvedSymbol(<Identifier>node);
+ //getResolvedSymbol(<Identifier>node);
11691
var substitution = getExpressionNameSubstitution(<Identifier>node, getGeneratedNameForNode);
11692
var text = substitution || (<Identifier>node).text;
11693
if (fallbackPath) {
0 commit comments