Overview
| Comment: | [core] variable renaming to avoid confusion |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | core | rg |
| Files: | files | file ages | folders |
| SHA3-256: |
0a9a5192b6b2b821cd42f2761e160265 |
| User & Date: | olr on 2018-06-18 14:23:04 |
| Other Links: | branch diff | manifest | tags |
Context
|
2018-06-18
| ||
| 15:00 | [build][fr] darg builder: optional token with ? and ¿ signs check-in: 079e65db1c user: olr tags: fr, build, rg | |
| 14:23 | [core] variable renaming to avoid confusion check-in: 0a9a5192b6 user: olr tags: core, rg | |
| 14:19 | [core] gc engine, graph parser: better debugging + fix token positioning while rewriting check-in: d5ac5b5af6 user: olr tags: core, rg | |
Changes
Modified gc_core/py/lang_core/gc_engine.py from [5c017c54f1] to [7520fb92f1].
| ︙ | |||
585 586 587 588 589 590 591 | 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | - + |
#### TOKEN SENTENCE CHECKER
class TokenSentence:
def __init__ (self, sSentence, sSentence0, nOffset):
self.sSentence = sSentence
self.sSentence0 = sSentence0
|
| ︙ | |||
695 696 697 698 699 700 701 | 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 | - - + + |
if not sOption or dOptions.get(sOption, False):
bCondMemo = not sFuncCond or globals()[sFuncCond](self.lToken, nTokenOffset, sCountry, bCondMemo)
if bCondMemo:
if cActionType == "-":
# grammar error
nTokenErrorStart = nTokenOffset + eAct[0]
nTokenErrorEnd = (nTokenOffset + eAct[1]) if eAct[1] else nLastToken
|
| ︙ |