dequeueParser method

void dequeueParser (Symbol symbol)

Remove a parser from queue list.

Usually called when the parser is baked and ready to use.

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

Implementation

static void dequeueParser(Symbol symbol) {
  if (queuedParsers.contains(symbol)) {
    queuedParsers.remove(symbol);
  }
}