fix names growing in liftWhere and redundant error for ErrorHole
Some checks failed
Publish Playground / build (push) Has been cancelled
Publish Playground / deploy (push) Has been cancelled

This commit is contained in:
2026-03-21 20:45:28 -07:00
parent c6835b9dfe
commit a40956a4cc
3 changed files with 4 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ stats = {}
acc = ''
name = ''
for line in open(fn):
if line.startswith('const'):
if line.startswith('const') or line.startswith('let'):
if name: stats[name] = len(acc)
acc = line
name = line.split()[1]