Hi,
I'm using JavaCC to build a complex parser. At one point, I would like to skip all the character I see until a desired token in my grammar... let's take for example the following
/* bla bla bla bla bla bla bla bla */ => I would like to define a kind of grammar like
<OPEN_COMMENT> SKIP ~[] until <CLOSE_COMMENT>
I want it to be true even if "bla" is a regular token
Thanks for your help