Overview
Comment: | [build][core] darg builder: use implicitly last token number if nothing is specified |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | core | build | rg |
Files: | files | file ages | folders |
SHA3-256: |
2018bef28c69857354ece5570a6057ac |
User & Date: | olr on 2018-06-17 15:21:32 |
Other Links: | branch diff | manifest | tags |
Context
2018-06-17
| ||
15:26 | [fr] implicit last token -> merge rules check-in: d2d6ab1341 user: olr tags: fr, rg | |
15:21 | [build][core] darg builder: use implicitly last token number if nothing is specified check-in: 2018bef28c user: olr tags: core, build, rg | |
15:10 | [fr] conversion: regex rules -> graph rules check-in: 07539850a5 user: olr tags: fr, rg | |
Changes
Modified compile_rules_graph.py from [2d984fb6f6] to [41b10d39af].
︙ | |||
129 130 131 132 133 134 135 | 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 | - + | sCondition = "" # Action cAction = m.group("action") sAction = sAction[m.end():].strip() sAction = changeReferenceToken(sAction, dPos) if not m.group("start"): iStartAction = 1 |
︙ |
Modified gc_core/py/lang_core/gc_engine.py from [4c2d49e047] to [d26ce3d16f].
︙ | |||
671 672 673 674 675 676 677 | 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 | - + - + - + + - + | for dNode in self._getNextMatchingNodes(dToken, dGraph, dGraph[0], bDebug): lPointer.append({"iToken": dToken["i"], "dNode": dNode}) # check if there is rules to check for each pointer for dPointer in lPointer: #if bDebug: # print("+", dPointer) if "<rules>" in dPointer["dNode"]: |
︙ |