Resolve subgroups.
(self)
| 83 | return re.sub(r'\s+', ' ', raw) |
| 84 | |
| 85 | def flatten(self): |
| 86 | """Resolve subgroups.""" |
| 87 | yield self |
| 88 | |
| 89 | def match(self, ttype, values, regex=False): |
| 90 | """Checks whether the token matches the given arguments. |
no outgoing calls