Overview
Comment: | [core][js] gc engine: fix assignation to dErrorPriority |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
b26ca44482fff550dc094a26fb2e94d9 |
User & Date: | olr on 2018-09-17 15:52:26 |
Other Links: | branch diff | manifest | tags |
Context
2018-09-18
| ||
06:42 | [core][js] gc engine: fix define_from check-in: acb9d9f53e user: olr tags: core, rg | |
2018-09-17
| ||
15:52 | [core][js] gc engine: fix assignation to dErrorPriority check-in: b26ca44482 user: olr tags: core, rg | |
12:07 | [fr][bug] mauvais token sélectionné check-in: d877acf9d9 user: olr tags: fr, rg | |
Changes
Modified gc_core/js/lang_core/gc_engine.js from [c507c29b13] to [11104a6fa0].
︙ | |||
600 601 602 603 604 605 606 | 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 | - + | 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)); |
︙ |