Differences From Artifact [95daec96bc]:
- File graphspell-js/lexgraph_fr.js — part of check-in [99f68677c9] at 2020-11-28 23:56:13 on branch trunk — [graphspell] fix syntax error (user: olr, size: 23852) [annotate] [blame] [check-ins using]
To Artifact [7a8c8a0a55]:
- File graphspell-js/lexgraph_fr.js — part of check-in [b3448ac17f] at 2020-11-30 15:15:42 on branch trunk — [graphspell][fx] update tokenizer and lexicographer: add symbols and emojis (user: olr, size: 24070) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
447 448 449 450 451 452 453 454 455 456 457 458 459 460 |
let m = null;
try {
switch (oToken.sType) {
case 'PUNC':
case 'SIGN':
oToken["aLabels"] = [this.dValues.gl_get(oToken["sValue"], "signe de ponctuation divers")];
break;
case 'NUM':
oToken["aLabels"] = ["nombre"];
break;
case 'LINK':
oToken["aLabels"] = ["hyperlien"];
break;
case 'TAG':
| > > > > > > | 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
let m = null;
try {
switch (oToken.sType) {
case 'PUNC':
case 'SIGN':
oToken["aLabels"] = [this.dValues.gl_get(oToken["sValue"], "signe de ponctuation divers")];
break;
case 'SYMB':
oToken["aLabels"] = ["symbole"];
break;
case 'EMOJI':
oToken["aLabels"] = ["émoji"];
break;
case 'NUM':
oToken["aLabels"] = ["nombre"];
break;
case 'LINK':
oToken["aLabels"] = ["hyperlien"];
break;
case 'TAG':
|
| ︙ | ︙ |