quotedFieldChar method
Implementation
Parser<String> quotedFieldChar() => [
seq2(char(escapeChar), any()).map2((_, char) => char),
pattern('^$quoteChar'),
].toChoiceParser();
Parser<String> quotedFieldChar() => [
seq2(char(escapeChar), any()).map2((_, char) => char),
pattern('^$quoteChar'),
].toChoiceParser();