literal method

Parser<Expression> literal()

Implementation

Parser<Expression> literal() =>
    numericLiteral().or(stringLiteral()).or(boolLiteral()).or(nullLiteral()).cast();