We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d7c84e commit b63e134Copy full SHA for b63e134
1 file changed
src/compiler/utilities.ts
@@ -3605,12 +3605,6 @@ namespace ts {
3605
return SyntaxKind.FirstTemplateToken <= kind && kind <= SyntaxKind.LastTemplateToken;
3606
}
3607
3608
- function isTemplateLiteralFragmentKind(kind: SyntaxKind) {
3609
- return kind === SyntaxKind.TemplateHead
3610
- || kind === SyntaxKind.TemplateMiddle
3611
- || kind === SyntaxKind.TemplateTail;
3612
- }
3613
-
3614
export function isTemplateHead(node: Node): node is TemplateHead {
3615
return node.kind === SyntaxKind.TemplateHead;
3616
0 commit comments