stringValue method

Parser stringValue()

Implementation

Parser stringValue() =>
    char('"') &
    char('"').neg().plusLazy(char('"')).flatten('String content expected') &
    char('"');