You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/compiler/checker.ts
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -3603,7 +3603,8 @@ module ts {
3603
3603
function getTypeFromTypeReference(node: TypeReferenceNode | ExpressionWithTypeArguments): Type {
3604
3604
let links = getNodeLinks(node);
3605
3605
if (!links.resolvedType) {
3606
-
// We only support expressions that are simple qualified names. For other expressions this produces undefined. let typeNameOrExpression = node.kind === SyntaxKind.TypeReference ? (<TypeReferenceNode>node).typeName :
3606
+
// We only support expressions that are simple qualified names. For other expressions this produces undefined.
3607
+
let typeNameOrExpression = node.kind === SyntaxKind.TypeReference ? (<TypeReferenceNode>node).typeName :
0 commit comments