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