titzer / virgil

A fast and lightweight native programming language
1.22k stars 42 forks source link

what's `Exprs` in the grammar? #93

Closed csmoe closed 1 year ago

csmoe commented 1 year ago

https://github.com/titzer/virgil/blob/ef8e88d2333c1ad1181ddb75f73dafc858b7449b/doc/virgil-grammar.ebnf#L66

Exprs node seems undefined.

titzer commented 1 year ago

Ah, I just noticed this. It's a comma-separated list of expressions. (I should probably actually generate a parser from EBNF and use it to debug it...)

Thanks!