Skip to content

Commit edd926c

Browse files
committed
dev
1 parent 2a3dd89 commit edd926c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11687,7 +11687,7 @@ module ts {
1168711687
/** Serializes an EntityName (with substitutions) to an appropriate JS constructor value. Used by the __metadata decorator. */
1168811688
function serializeEntityName(node: EntityName, getGeneratedNameForNode: (Node: Node) => string, fallbackPath?: string[]): string {
1168911689
if (node.kind === SyntaxKind.Identifier) {
11690-
getResolvedSymbol(<Identifier>node);
11690+
//getResolvedSymbol(<Identifier>node);
1169111691
var substitution = getExpressionNameSubstitution(<Identifier>node, getGeneratedNameForNode);
1169211692
var text = substitution || (<Identifier>node).text;
1169311693
if (fallbackPath) {

0 commit comments

Comments
 (0)