Make 'syntacticClassifierAbsent' non-optional.

This commit is contained in:
Daniel Rosenwasser 2015-02-16 12:21:16 -08:00
parent 9f7c252ee0
commit 67638cbc00

View File

@ -43,7 +43,7 @@ describe('Colorization', function () {
}
function testLexicalClassification(text: string, initialEndOfLineState: ts.EndOfLineState, ...expectedEntries: ClassificationEntry[]): void {
var result = classifier.getClassificationsForLine(text, initialEndOfLineState);
var result = classifier.getClassificationsForLine(text, initialEndOfLineState, /*syntacticClassifierAbsent*/ false);
for (var i = 0, n = expectedEntries.length; i < n; i++) {
var expectedEntry = expectedEntries[i];