addParser method
Add a parser to the map.
Implementation
static void addParser(Parser parser) {
parsers.putIfAbsent(parser.associatedTypeSymbol, () => parser);
dequeueParser(parser.associatedTypeSymbol);
}
Add a parser to the map.
static void addParser(Parser parser) {
parsers.putIfAbsent(parser.associatedTypeSymbol, () => parser);
dequeueParser(parser.associatedTypeSymbol);
}