(head, tail, line_index)
| 18 | |
| 19 | |
| 20 | def handle_action(head, tail, line_index): |
| 21 | if tail: |
| 22 | action = tail.strip('"').replace(r"\"", '"').replace(r"\\\\", r"\\") |
| 23 | return head, (action,) |
| 24 | return "error", (f"'{head}' without specified action", line_index) |
| 25 | |
| 26 | |
| 27 | def handle_context(tail, line_index): |
no test coverage detected