Parser 2.0 (Major Delezer) #52

Merged
defunkt merged 35 commits from parser2 into main 2025-12-08 16:35:34 +00:00
Showing only changes of commit 757a50e23e - Show all commits

View File

@ -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
}