Overview
Comment: | [core] gc engine: clearer debugging messages to avoid looking for problems at the wrong place |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | rg |
Files: | files | file ages | folders |
SHA3-256: |
bb3ffc5151e3bf11a5c48dc75c42c46e |
User & Date: | olr on 2018-06-25 14:23:47 |
Other Links: | branch diff | manifest | tags |
Context
2018-06-25
| ||
14:25 | [fr] màj du sac de nœuds des préverbes check-in: bbd4228b52 user: olr tags: fr, rg | |
14:23 | [core] gc engine: clearer debugging messages to avoid looking for problems at the wrong place check-in: bb3ffc5151 user: olr tags: core, rg | |
14:22 | [build][bugs] compile rules graph: fix disambiguator and don’t use repositioning if selector is empty check-in: d5029b9ccc user: olr tags: build, rg | |
Changes
Modified gc_core/py/lang_core/gc_engine.py from [4a05ed73f6] to [990cf356cf].
︙ | |||
765 766 767 768 769 770 771 | 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 | - + - + - + - + | nTokenErrorEnd = (nTokenOffset + eAct[1]) if eAct[1] else nLastToken nErrorStart = self.nOffsetWithinParagraph + self.lToken[nTokenErrorStart]["nStart"] nErrorEnd = self.nOffsetWithinParagraph + self.lToken[nTokenErrorEnd]["nEnd"] if nErrorStart not in dError or eAct[2] > dPriority.get(nErrorStart, -1): dError[nErrorStart] = self.createError(sWhat, nTokenOffset, nTokenErrorStart, nErrorStart, nErrorEnd, sLineId, sRuleId, True, eAct[3], eAct[4], bShowRuleId, "notype", bContext) dPriority[nErrorStart] = eAct[2] if bDebug: |
︙ |