130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
if (this.oPersonalDic) {
lResult.extends(this.oPersonalDic.getMorph(sWord));
}
return lResult;
}
* suggest (sWord, nSuggLimit=10) {
// generator: returns 1,2 or 3 lists of suggestions
yield this.oMainDic.suggest(sWord, nSuggLimit);
if (this.oExtendedDic) {
yield this.oExtendedDic.suggest(sWord, nSuggLimit);
}
if (this.oPersonalDic) {
yield this.oPersonalDic.suggest(sWord, nSuggLimit);
}
|
|
|
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
if (this.oPersonalDic) {
lResult.extends(this.oPersonalDic.getMorph(sWord));
}
return lResult;
}
* suggest (sWord, nSuggLimit=10) {
// generator: returns 1, 2 or 3 lists of suggestions
yield this.oMainDic.suggest(sWord, nSuggLimit);
if (this.oExtendedDic) {
yield this.oExtendedDic.suggest(sWord, nSuggLimit);
}
if (this.oPersonalDic) {
yield this.oPersonalDic.suggest(sWord, nSuggLimit);
}
|