Parse the proc code into arguments & strings
(self)
| 276 | |
| 277 | @property |
| 278 | def parsed_proc_code(self) -> list[str | ArgumentType] | None: |
| 279 | """ |
| 280 | Parse the proc code into arguments & strings |
| 281 | """ |
| 282 | return parse_proc_code(self.proc_code) |
| 283 | |
| 284 | @staticmethod |
| 285 | def from_json(data: dict) -> Mutation: # noqa: C901 |
nothing calls this directly
no test coverage detected