@@ -5539,6 +5539,15 @@ declare module "typescript" {
55395539
55405540 InDoubleQuoteStringLiteral = 3,
55415541>InDoubleQuoteStringLiteral : EndOfLineState
5542+
5543+ InTemplateHeadOrNoSubstitutionTemplate = 4,
5544+ >InTemplateHeadOrNoSubstitutionTemplate : EndOfLineState
5545+
5546+ InTemplateMiddleOrTail = 5,
5547+ >InTemplateMiddleOrTail : EndOfLineState
5548+
5549+ InTemplateSubstitutionPosition = 6,
5550+ >InTemplateSubstitutionPosition : EndOfLineState
55425551 }
55435552 enum TokenClass {
55445553>TokenClass : TokenClass
@@ -5594,12 +5603,12 @@ declare module "typescript" {
55945603 interface Classifier {
55955604>Classifier : Classifier
55965605
5597- getClassificationsForLine(text: string, lexState: EndOfLineState, classifyKeywordsInGenerics ?: boolean): ClassificationResult;
5598- >getClassificationsForLine : (text: string, lexState: EndOfLineState, classifyKeywordsInGenerics ?: boolean) => ClassificationResult
5606+ getClassificationsForLine(text: string, lexState: EndOfLineState, syntacticClassifierAbsent ?: boolean): ClassificationResult;
5607+ >getClassificationsForLine : (text: string, lexState: EndOfLineState, syntacticClassifierAbsent ?: boolean) => ClassificationResult
55995608>text : string
56005609>lexState : EndOfLineState
56015610>EndOfLineState : EndOfLineState
5602- >classifyKeywordsInGenerics : boolean
5611+ >syntacticClassifierAbsent : boolean
56035612>ClassificationResult : ClassificationResult
56045613 }
56055614 /**
0 commit comments