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
emitList(node,node.typeArguments,ListFormat.TypeParameters);// Call emitList directly since it could be an array of TypeParameterDeclarations _or_ type arguments
2482
+
emitList(node,getIdentifierTypeArguments(node),ListFormat.TypeParameters);// Call emitList directly since it could be an array of TypeParameterDeclarations _or_ type arguments
/** @internal */readonlyautoGenerate: AutoGenerateInfo|undefined;// Used for auto-generated identifiers.
1683
1682
/** @internal */generatedImportReference?: ImportSpecifier;// Reference to the generated import specifier this identifier refers to
1684
1683
isInJSDocNamespace?: boolean;// if the node is a member in a JSDoc namespace
1685
-
/** @internal */typeArguments?: NodeArray<TypeNode|TypeParameterDeclaration>;// Only defined on synthesized nodes. Though not syntactically valid, used in emitting diagnostics, quickinfo, and signature help.
1686
1684
/** @internal */jsdocDotPos?: number;// Identifier occurs in JSDoc-style generic: Id.<T>
1687
-
/**@internal*/hasExtendedUnicodeEscape?: boolean;
1685
+
/**@internal*/hasExtendedUnicodeEscape?: boolean;
1688
1686
}
1689
1687
1690
1688
// Transient identifier node (marked by id === -1)
@@ -7828,6 +7826,7 @@ export interface EmitNode {
7828
7826
startsOnNewLine?: boolean;// If the node should begin on a new line
7829
7827
snippetElement?: SnippetElement;// Snippet element of the node
7830
7828
typeNode?: TypeNode;// VariableDeclaration type
7829
+
identifierTypeArguments?: NodeArray<TypeNode|TypeParameterDeclaration>;// Only defined on synthesized identifiers. Though not syntactically valid, used in emitting diagnostics, quickinfo, and signature help.
0 commit comments