(self, s: str, loc: int, toks: ParseResults)
| 2501 | ]) |
| 2502 | |
| 2503 | def function(self, s: str, loc: int, toks: ParseResults) -> T.Any: |
| 2504 | hlist = self.operatorname(s, loc, toks) |
| 2505 | hlist.function_name = toks["name"] |
| 2506 | return hlist |
| 2507 | |
| 2508 | def operatorname(self, s: str, loc: int, toks: ParseResults) -> T.Any: |
| 2509 | self.push_state() |
nothing calls this directly
no test coverage detected