public IParser <TextSpan> String(StringLiteralQuotes quotes = StringLiteralQuotes.SingleOrDouble) => new StringLiteral(quotes);
public StringLiteral(StringLiteralQuotes quotes, bool skipWhiteSpace = true) { _quotes = quotes; _skipWhiteSpace = skipWhiteSpace; }
public IParser <TextSpan> String(StringLiteralQuotes quotes = StringLiteralQuotes.SingleOrDouble) => new StringLiteral(quotes, skipWhiteSpace: false);