(src)
| 45 | |
| 46 | |
| 47 | def parse_src(src): |
| 48 | p = parser.Parser(src, "test.c") |
| 49 | nodes = [] |
| 50 | while node := p.definition(): |
| 51 | nodes.append(node) |
| 52 | return nodes |
| 53 | |
| 54 | |
| 55 | class TestEffects(unittest.TestCase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…