BenjaminSchaaf / sbnf

A BNF-style language for writing sublime-syntax files
MIT License
58 stars 6 forks source link

Meta scope not applied to ~ content when branching #38

Open eugenesvk opened 1 year ago

eugenesvk commented 1 year ago
main            : (~test   )*   ;
test {#[ZO]}    : '"' ~ '"' ; # scope applied
test {#[ZO]}    : '"' ~ '"' | '"'{#[Z]}; # branching, scope NOT applied to the content
test {#[ZO]}    : '"' '[^"]*"' | '"'{#[Z]}; # branching without ~, scope applied