(self, name: str, args: list[str])
| 55 | return Construction(data[0], data[1:]) |
| 56 | |
| 57 | def __init__(self, name: str, args: list[str]): |
| 58 | self.name = name |
| 59 | self.args = args |
| 60 | |
| 61 | def translate(self, mapping: dict[str, str]) -> Construction: |
| 62 | args = [a if isint(a) else mapping[a] for a in self.args] |
nothing calls this directly
no outgoing calls
no test coverage detected