| 11 | raise NotImplementedError() |
| 12 | |
| 13 | class Mapping(Function): |
| 14 | def __init__(self, functions: Optional[List[Function]] = None) -> None: |
| 15 | self.functions = functions if functions is not None else [] |
| 16 | for func in self.functions: |
| 17 | assert isinstance(func, Function), "Should put Function type in Mapping." |
| 18 | |
| 19 | @dataclass |
| 20 | class Layout(Function): |
nothing calls this directly
no outgoing calls
no test coverage detected