parser property

Parser<TomlExpression?> parser
final

Parser for TOML expressions.

Returns null if the expression is just a blank line or comment.

Implementation

static final Parser<TomlExpression?> parser = ChoiceParser(
  [_keyvalParser, _tableParser, _blankParser.cast<TomlExpression?>()],
  failureJoiner: selectFarthestJoined,
);