Differences From Artifact [e42b82b880]:
- File graphspell-js/spellchecker.js — part of check-in [ebdbe42659] at 2020-08-23 05:28:57 on branch salxg — [graphspell] function readableMorph() (user: olr, size: 10878) [annotate] [blame] [check-ins using]
To Artifact [851f1e59f5]:
- File graphspell-js/spellchecker.js — part of check-in [257257469a] at 2020-08-25 16:03:35 on branch salxg — [core][graphspell][fx] update lexicographer (user: olr, size: 11036) [annotate] [blame] [check-ins using]
| ︙ | |||
167 168 169 170 171 172 173 174 175 176 177 178 179 180 | 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | + + + + + + + + |
readableMorph (sMorph) {
if (!this.lexicographer) {
return [];
}
return this.lexicographer.formatTags(sMorph);
}
setLabelsOnToken (oToken) {
if (!this.lexicographer) {
return;
}
this.lexicographer.setLabelsOnToken(oToken);
}
// Storage
activateStorage () {
this.bStorage = true;
}
|
| ︙ |