(self, s, position, reentrances, match)
| 2523 | ) |
| 2524 | |
| 2525 | def read_set_value(self, s, position, reentrances, match): |
| 2526 | return self._read_seq_value( |
| 2527 | s, position, reentrances, match, "}", FeatureValueSet, FeatureValueUnion |
| 2528 | ) |
| 2529 | |
| 2530 | def _read_seq_value( |
| 2531 | self, s, position, reentrances, match, close_paren, seq_class, plus_class |
nothing calls this directly
no test coverage detected