contentParser property

Parser<String> contentParser
final

Parser for a single character of a multiline basic TOML string.

mlb-content = mlb-char / newline / mlb-escaped-nl
mlb-char = mlb-unescaped / escaped

Implementation

static final Parser<String> contentParser = ChoiceParser([
  unescapedParser,
  TomlEscapedChar.parser,
  tomlNewline,
  escapedNewlineParser,
], failureJoiner: selectFarthestJoined);