sbnf icon indicating copy to clipboard operation
sbnf copied to clipboard

Meta scope not applied to ~ content when branching

Open eugenesvk opened this issue 2 years ago • 0 comments

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

eugenesvk avatar Jun 04 '23 12:06 eugenesvk