(input: &str)
| 26 | } |
| 27 | |
| 28 | pub fn parse_attribute_definitions0(input: &str) -> IResult<&str, AttributeDefinitions> { |
| 29 | separated_list0(ws(char(',')), parse_attribute_definition)(input) |
| 30 | } |
| 31 | |
| 32 | pub fn parse_attribute_definitions1(input: &str) -> IResult<&str, AttributeDefinitions> { |
| 33 | separated_list1(ws(char(',')), parse_attribute_definition)(input) |