Differences From Artifact [1c01c104ea]:
- File graphspell-js/dawg.js — part of check-in [0369072caa] at 2020-11-16 10:33:54 on branch trunk — [graphspell][js] dawg: useless parameters (user: olr, size: 22366) [annotate] [blame] [check-ins using]
To Artifact [743b532572]:
- File graphspell-js/dawg.js — part of check-in [78b5950c87] at 2021-02-10 11:39:52 on branch trunk — [core][fr][graphspell] code cleaning: pylint (user: olr, size: 22448) [annotate] [blame] [check-ins using]
| ︙ | |||
138 139 140 141 142 143 144 145 146 147 148 149 150 151 | 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | + + + + |
if (cStemming == "A") {
this.funcStemming = str_transform.changeWordWithAffixCode;
} else if (cStemming == "S") {
this.funcStemming = str_transform.changeWordWithSuffixCode;
} else {
this.funcStemming = str_transform.noStemming;
}
// binary dictionary
this.sByDic = "";
this.lByDic = [];
// build
lWord.sort();
if (xProgressBarNode) {
xProgressBarNode.value = 0;
xProgressBarNode.max = lWord.length;
}
|
| ︙ |