Procházet zdrojové kódy

Bug fixes to Transformer_NoRecurse

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.5.1
Kevin Latimer před 6 roky
rodič
revize
240cf1ca21
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      lark/tree.py

+ 1
- 1
lark/tree.py Zobrazit soubor

@@ -182,7 +182,7 @@ class Transformer_NoRecurse(Transformer):
else:
return f(t)

for subtree in reversed(subtrees):
for subtree in subtrees:
children = []
for c in subtree.children:
try:


Načítá se…
Zrušit
Uložit