Overview
Comment: | [core][js] gc engine: fix several issues |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
900ff7dc44814b4af81fd0cb96ff7ff3 |
User & Date: | olr on 2018-09-12 17:21:00 |
Other Links: | branch diff | manifest | tags |
Context
2018-09-12
| ||
21:16 | [fr] ajustements check-in: cecc3acf1f user: olr tags: fr, rg | |
17:21 | [core][js] gc engine: fix several issues check-in: 900ff7dc44 user: olr tags: core, rg | |
10:38 | [core] rename parameter tags -> aTags check-in: 5a15898d11 user: olr tags: core, rg | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [eabdda0297] to [a0a87c723d].
︙ | ︙ | |||
410 411 412 413 414 415 416 | console.log(" MATCH: ~" + sRegex); } yield { "iNode1": iNode1, "dNode": dGraph[dNode["<re_value>"][sRegex]] }; bTokenFound = true; } } else { // there is an anti-pattern | | | 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | console.log(" MATCH: ~" + sRegex); } yield { "iNode1": iNode1, "dNode": dGraph[dNode["<re_value>"][sRegex]] }; bTokenFound = true; } } else { // there is an anti-pattern let [sPattern, sNegPattern] = sRegex.split("¬", 2); if (sNegPattern && dToken["sValue"].search(sNegPattern) !== -1) { continue; } if (!sPattern || dToken["sValue"].search(sPattern) !== -1) { if (bDebug) { console.log(" MATCH: ~" + sRegex); } |
︙ | ︙ | |||
454 455 456 457 458 459 460 | console.log(" MATCH: @" + sRegex); } yield { "iNode1": iNode1, "dNode": dGraph[dNode["<re_morph>"][sRegex]] }; bTokenFound = true; } } else { // there is an anti-pattern | | | 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 | console.log(" MATCH: @" + sRegex); } yield { "iNode1": iNode1, "dNode": dGraph[dNode["<re_morph>"][sRegex]] }; bTokenFound = true; } } else { // there is an anti-pattern let [sPattern, sNegPattern] = sRegex.split("¬", 2); if (sNegPattern == "*") { // all morphologies must match with <sPattern> if (sPattern) { if (lMorph.length > 0 && lMorph.every(sMorph => (sMorph.search(sPattern) !== -1))) { if (bDebug) { console.log(" MATCH: @" + sRegex); } |
︙ | ︙ | |||
598 599 600 601 602 603 604 | // grammar error let [iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, sURL] = eAct; let nTokenErrorStart = (iTokenStart > 0) ? nTokenOffset + iTokenStart : nLastToken + iTokenStart; if (!this.lToken[nTokenErrorStart].hasOwnProperty("bImmune")) { let nTokenErrorEnd = (iTokenEnd > 0) ? nTokenOffset + iTokenEnd : nLastToken + iTokenEnd; let nErrorStart = this.nOffsetWithinParagraph + ((cStartLimit == "<") ? this.lToken[nTokenErrorStart]["nStart"] : this.lToken[nTokenErrorStart]["nEnd"]); let nErrorEnd = this.nOffsetWithinParagraph + ((cEndLimit == ">") ? this.lToken[nTokenErrorEnd]["nEnd"] : this.lToken[nTokenErrorEnd]["nStart"]); | | | | | 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 | // grammar error let [iTokenStart, iTokenEnd, cStartLimit, cEndLimit, bCaseSvty, nPriority, sMessage, sURL] = eAct; let nTokenErrorStart = (iTokenStart > 0) ? nTokenOffset + iTokenStart : nLastToken + iTokenStart; if (!this.lToken[nTokenErrorStart].hasOwnProperty("bImmune")) { let nTokenErrorEnd = (iTokenEnd > 0) ? nTokenOffset + iTokenEnd : nLastToken + iTokenEnd; let nErrorStart = this.nOffsetWithinParagraph + ((cStartLimit == "<") ? this.lToken[nTokenErrorStart]["nStart"] : this.lToken[nTokenErrorStart]["nEnd"]); let nErrorEnd = this.nOffsetWithinParagraph + ((cEndLimit == ">") ? this.lToken[nTokenErrorEnd]["nEnd"] : this.lToken[nTokenErrorEnd]["nStart"]); if (!this.dError.has(nErrorStart) || nPriority > this.dErrorPriority.gl_get(nErrorStart, -1)) { this.dError.set(nErrorStart, this._createErrorFromTokens(sWhat, nTokenOffset, nLastToken, nTokenErrorStart, nErrorStart, nErrorEnd, sLineId, sRuleId, bCaseSvty, sMessage, sURL, bShowRuleId, sOption, bContext)); this.dErrorPriority[nErrorStart] = nPriority; if (bDebug) { console.log(" NEW_ERROR: ", this.dError.get(nErrorStart)); } } } } else if (cActionType == "~") { // text processor let nTokenStart = (eAct[0] > 0) ? nTokenOffset + eAct[0] : nLastToken + eAct[0]; |
︙ | ︙ |