(*choices)
| 58 | return self.type |
| 59 | |
| 60 | def group(*choices): return '(' + '|'.join(choices) + ')' |
| 61 | def any(*choices): return group(*choices) + '*' |
| 62 | def maybe(*choices): return group(*choices) + '?' |
| 63 |
no test coverage detected
searching dependent graphs…