(s, depth)
| 75 | return lines |
| 76 | |
| 77 | def reflow_c_string(s, depth): |
| 78 | return '"%s"' % s.replace('\n', '\\n"\n%s"' % (' ' * depth * TABSIZE)) |
| 79 | |
| 80 | def is_simple(sum_type): |
| 81 | """Return True if a sum is a simple. |
no test coverage detected
searching dependent graphs…