I'm trying to set up my parser to find the end of a certain parameter by recognizing that there isn't a comma, so I basically have it set up to find a parameter like this
parameter: end_parameter comma
(This data type is just a list, so there isn't anything to indicate it ends--just that it stops when there isn't a comma separating items)
And end_parameter is defined below and does what it's supposed to. The parser works with other data types by recognizing the right brace as the end, but I'm getting shift/reduce errors when I set up the type that is ended by a lack of a comma. Does anyone have any suggestions?