Variable Parser.messageDelegate

Function or delegate that is called when a warning or error is encountered. The parameters are the file name, line number, column number, and the error or warning message.

class Parser
{
  // ...
  void delegate(string, ulong, ulong, string, bool) messageDelegate ;
  // ...
}