Differences From Artifact [4f26fdbb38]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [aea18de06f] at 2019-08-20 10:24:57 on branch trunk — [core] don’t print if not in debug mode (user: olr, size: 63359) [annotate] [blame] [check-ins using]
To Artifact [73b1002d2e]:
- File gc_core/js/lang_core/gc_engine.js — part of check-in [8b4efd4241] at 2019-08-27 08:04:55 on branch trunk — [build][core][fr] function change_meta(), +ajustements (user: olr, size: 63494) [annotate] [blame] [check-ins using]
| ︙ | |||
1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 | 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 | + + + + + + + |
let sValue = oToken["sValue"];
if (nLeft !== null) {
sValue = (nRight !== null) ? sValue.slice(nLeft, nRight) : sValue.slice(nLeft);
}
oToken["lMorph"] = _oSpellChecker.getMorph(sValue);
return true;
}
function g_change_meta (oToken, sType) {
// Disambiguation: change type of token
oToken["sType"] = sType;
return true;
}
//////// GRAMMAR CHECKER PLUGINS
${pluginsJS}
|
| ︙ |