(d: dict)
| 46 | |
| 47 | @staticmethod |
| 48 | def from_dict(d: dict) -> "SubmoduleRef": |
| 49 | return SubmoduleRef( |
| 50 | name=d["name"], kind=d.get("kind", "call"), |
| 51 | output_var=d.get("output_var"), |
| 52 | input_var=d.get("input_var"), |
| 53 | ) |
| 54 | |
| 55 | |
| 56 | # ---------- TypedVar ---------- |
nothing calls this directly
no test coverage detected