(self, env: Mapping[str, Optional[str]])
| 42 | return hash((self.__class__, self.value)) |
| 43 | |
| 44 | def resolve(self, env: Mapping[str, Optional[str]]) -> str: |
| 45 | return self.value |
| 46 | |
| 47 | |
| 48 | class Variable(Atom): |
nothing calls this directly
no outgoing calls
no test coverage detected