Reduce max number of spelling suggestions to 10

This commit is contained in:
Nathan Shively-Sanders
2017-05-03 10:10:13 -07:00
parent ee1edf0421
commit 4877343538
13 changed files with 323 additions and 781 deletions

View File

@@ -319,7 +319,7 @@ namespace ts {
const resolutionPropertyNames: TypeSystemPropertyName[] = [];
let suggestionCount = 0;
const maximumSuggestionCount = 100;
const maximumSuggestionCount = 10;
const mergedSymbols: Symbol[] = [];
const symbolLinks: SymbolLinks[] = [];
const nodeLinks: NodeLinks[] = [];