classifyKeywordsInGenerics -> syntacticClassifierAbsent

This commit is contained in:
Daniel Rosenwasser 2015-01-26 12:37:03 -08:00
parent f1f085eda6
commit 3fea0aefbe
2 changed files with 2 additions and 2 deletions

View File

@ -1171,7 +1171,7 @@ module ts {
}
export interface Classifier {
getClassificationsForLine(text: string, lexState: EndOfLineState, classifyKeywordsInGenerics?: boolean): ClassificationResult;
getClassificationsForLine(text: string, lexState: EndOfLineState, syntacticClassifierAbsent?: boolean): ClassificationResult;
}
/**

View File

@ -165,7 +165,7 @@ module ts {
}
export interface ClassifierShim extends Shim {
getClassificationsForLine(text: string, lexState: EndOfLineState, classifyKeywordsInGenerics?: boolean): string;
getClassificationsForLine(text: string, lexState: EndOfLineState, syntacticClassifierAbsent?: boolean): string;
}
export interface CoreServicesShim extends Shim {