public ParserSettings(IHelpPrinter helpPrinter, IParsingErrorPrinter parsingErrorPrinter) { HelpPrinter = helpPrinter; ParsingErrorPrinter = parsingErrorPrinter; AssignmentOperators = ImmutableArray <string> .Empty; }
public IInitialFluentArgsBuilder RegisterParsingErrorPrinter(IParsingErrorPrinter parsingErrorPrinter) { ((InitialStep)Step).ParserSettings !.ParsingErrorPrinter = parsingErrorPrinter; return(this); }