fieldValueInBraces method

Parser<String> fieldValueInBraces()

Implementation

Parser<String> fieldValueInBraces() =>
    seq3(char('{'), ref0(fieldStringWithinBraces), char('}'))
        .flatten("braced string expected");