(text)
| 238 | |
| 239 | @with_pattern(r"\d+") |
| 240 | def increment(text): |
| 241 | return int(text) + 1 |
| 242 | |
| 243 | searched = search("value={:Num}", "prefix value=14 suffix", extra_types={"Num": triple}) |
| 244 | found = list(findall("{:Num}", "3 5 8", extra_types={"Num": increment})) |
nothing calls this directly
no outgoing calls
no test coverage detected