(text)
| 202 | |
| 203 | @with_pattern(r"\d+") |
| 204 | def parse_number(text): |
| 205 | return int(text) |
| 206 | |
| 207 | parser = compile("test {:Unit}-{:Number}", extra_types={"Unit": parse_unit, "Number": parse_number}) |
| 208 |
nothing calls this directly
no outgoing calls
no test coverage detected