(a, b)
| 31 | G.add_edge(sp, ep, func_ids=[func_id]) |
| 32 | |
| 33 | def intersected(a, b): |
| 34 | return a[0] <= b[0] <= a[1] or b[0] <= a[0] <= b[1] |
| 35 | |
| 36 | def get_modified_func_ids(func_ranges, modified_intervals, func_ids): |
| 37 | search_ptr = 0 |
no outgoing calls
no test coverage detected