fix ./bin/shrimp parse

This commit is contained in:
Chris Wanstrath 2025-12-02 16:54:24 -08:00
parent cb7cdaea62
commit 757a50e23e

View File

@ -143,7 +143,7 @@ async function main() {
process.exit(1) process.exit(1)
} }
const input = readFileSync(file, 'utf-8') const input = readFileSync(file, 'utf-8')
console.log(treeToString2(parseCode(input), input)) console.log(treeToString2(parseCode(input).topNode, input))
return return
} }