Overview
Comment: | [core][js] fix disambiguation |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
3be8b61d5a2856b9e5404157fcf11ed6 |
User & Date: | olr on 2018-09-19 13:18:39 |
Other Links: | branch diff | manifest | tags |
Context
2018-09-19
| ||
14:07 | [build][fr] remove ternary operator check-in: d74ae7ac7f user: olr tags: fr, build, rg | |
13:18 | [core][js] fix disambiguation check-in: 3be8b61d5a user: olr tags: core, rg | |
11:26 | [core][js][bug] fix word slicing check-in: 999ac69c3f user: olr tags: core, rg | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [aa97358578] to [2a12fbd54b].
︙ | ︙ | |||
293 294 295 296 297 298 299 | } break; case "=": // disambiguation //console.log("-> disambiguation by " + sLineId + "\nzRegex: " + zRegex.source); oEvalFunc[sWhat](sText, m, this.dTokenPos); if (bDebug) { | | | 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 | } break; case "=": // disambiguation //console.log("-> disambiguation by " + sLineId + "\nzRegex: " + zRegex.source); oEvalFunc[sWhat](sText, m, this.dTokenPos); if (bDebug) { console.log("= " + m[0] + " # " + sLineId, "\nDA:", this.dTokenPos); } break; case ">": // we do nothing, this test is just a condition to apply all following actions break; default: console.log("# error: unknown action at " + sLineId); |
︙ | ︙ | |||
1272 1273 1274 1275 1276 1277 1278 | let lMorph = _oSpellChecker.getMorph(sWord); if (lMorph.length === 0 || lMorph.length === 1) { return true; } let lSelect = lMorph.filter( sMorph => sMorph.search(sPattern) !== -1 ); if (lSelect.length > 0) { if (lSelect.length != lMorph.length) { | | | | | | | 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 | let lMorph = _oSpellChecker.getMorph(sWord); if (lMorph.length === 0 || lMorph.length === 1) { return true; } let lSelect = lMorph.filter( sMorph => sMorph.search(sPattern) !== -1 ); if (lSelect.length > 0) { if (lSelect.length != lMorph.length) { dTokenPos.get(nPos)["lMorph"] = lSelect; } } else if (lDefault) { dTokenPos.get(nPos)["lMorph"] = lDefault; } return true; } function exclude (dTokenPos, nPos, sWord, sPattern, lDefault=null) { if (!sWord) { return true; } if (!dTokenPos.has(nPos)) { console.log("Error. There should be a token at this position: ", nPos); return true; } let lMorph = _oSpellChecker.getMorph(sWord); if (lMorph.length === 0 || lMorph.length === 1) { return true; } let lSelect = lMorph.filter( sMorph => sMorph.search(sPattern) === -1 ); if (lSelect.length > 0) { if (lSelect.length != lMorph.length) { dTokenPos.get(nPos)["lMorph"] = lSelect; } } else if (lDefault) { dTokenPos.get(nPos)["lMorph"] = lDefault; } return true; } function define (dTokenPos, nPos, lMorph) { dTokenPos.get(nPos)["lMorph"] = lMorph; return true; } //// Disambiguation for graph rules function g_select (dToken, sPattern, lDefault=null) { |
︙ | ︙ |