(self, s: str)
| 8 | super().__init__() |
| 9 | |
| 10 | def forward(self, s: str) -> str: |
| 11 | stack = torch.classes.my_classes.MyStackClass(["hi", "mom"]) |
| 12 | return stack.pop() + s |
| 13 | |
| 14 | |
| 15 | scripted_foo = torch.jit.script(Foo()) |
nothing calls this directly
no outgoing calls
no test coverage detected