queueParser method

void queueParser (Symbol symbol)

Queue an unbaked parser.

symbol must be a symbol that is associated with this parser.

Implementation

static void queueParser(Symbol symbol) {
  if (!queuedParsers.contains(symbol)) {
    queuedParsers.add(symbol);
  }
}