예제 #1
0
 public IParser <TextSpan> String(StringLiteralQuotes quotes       = StringLiteralQuotes.SingleOrDouble) => new StringLiteral(quotes);
예제 #2
0
 public StringLiteral(StringLiteralQuotes quotes, bool skipWhiteSpace = true)
 {
     _quotes         = quotes;
     _skipWhiteSpace = skipWhiteSpace;
 }
예제 #3
0
 public IParser <TextSpan> String(StringLiteralQuotes quotes       = StringLiteralQuotes.SingleOrDouble) => new StringLiteral(quotes, skipWhiteSpace: false);