From 757a50e23ebe1352dcb1bbc289bb47d2e488e8d6 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 2 Dec 2025 16:54:24 -0800 Subject: [PATCH] fix `./bin/shrimp parse` --- bin/shrimp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/shrimp b/bin/shrimp index 0754565..213e4cb 100755 --- a/bin/shrimp +++ b/bin/shrimp @@ -143,7 +143,7 @@ async function main() { process.exit(1) } const input = readFileSync(file, 'utf-8') - console.log(treeToString2(parseCode(input), input)) + console.log(treeToString2(parseCode(input).topNode, input)) return }