arguments property

Parser<List<Expression>> get arguments

Implementation

Parser<List<Expression>> get arguments => expression
    .plusSeparated(char(',').trim())
    .map((sl) => sl.elements)
    .castList<Expression>()
    .optionalWith([]);