DEFAULT_CHANNEL constant

int const DEFAULT_CHANNEL

All tokens go to the parser (unless skip() is called in that rule) on a particular "channel". The parser tunes to a particular channel so that whitespace etc... can go to the parser on a "hidden" channel.

Implementation

static const int DEFAULT_CHANNEL = 0;