feat: Initial statix assignment of types to expressions
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Glen Whitney 2021-02-14 10:25:23 -08:00
parent b3f9cdf372
commit 5cd75b8177
5 changed files with 186 additions and 7 deletions

View file

@ -27,9 +27,9 @@ for path in TEST_LIST:
if pfm: continue # skip examples that don't parse
ntfm = re.search(r'\n\s*\]\].*?don.t.test', details)
if ntfm: continue # explicit skip
em = re.search(r'\n\s*\]\]', details)
em = re.search(r'\n\]\]', details)
if not em: continue
example = details[:em.start()+1]
example = details[:em.start()+1].replace('[[','').replace(']]','')
expath = destdir / f"{name}.{EXT}"
expath.write_text(example)
echo Wrote @(expath)