Given a list of lines, find all calls in this list. :param body_el ast: :rtype: list[Call]
(body_el)
| 73 | |
| 74 | |
| 75 | def make_calls(body_el): |
| 76 | """ |
| 77 | Given a list of lines, find all calls in this list. |
| 78 | |
| 79 | :param body_el ast: |
| 80 | :rtype: list[Call] |
| 81 | """ |
| 82 | calls = [] |
| 83 | for el in walk(body_el): |
| 84 | if el[0] == 'send': |
| 85 | calls.append(get_call_from_send_el(el)) |
| 86 | return calls |
| 87 | |
| 88 | |
| 89 | def process_assign(assignment_el): |
no test coverage detected