There are several tokens and Parsers, e.g. single_quoted_string, double_quoted_string, semicolon, etc.
How to parse any char that is not the start of these?
It would be basically #none_of, but with Parser, not Token. Or maybe some combination of #not_ahead?
There are several tokens and
Parsers, e.g.single_quoted_string,double_quoted_string,semicolon, etc.How to parse any char that is not the start of these?
It would be basically
#none_of, but withParser, notToken. Or maybe some combination of#not_ahead?