Load a FunctionCall from its ID.
(self, id: FunctionCallID)
| 13431 | return FunctionCallArgValue(_ctx) |
| 13432 | |
| 13433 | def load_function_call_from_id(self, id: FunctionCallID) -> FunctionCall: |
| 13434 | """Load a FunctionCall from its ID.""" |
| 13435 | _args = [ |
| 13436 | Arg("id", id), |
| 13437 | ] |
| 13438 | _ctx = self._select("loadFunctionCallFromID", _args) |
| 13439 | return FunctionCall(_ctx) |
| 13440 | |
| 13441 | def load_function_from_id(self, id: FunctionID) -> Function: |
| 13442 | """Load a Function from its ID.""" |
nothing calls this directly
no test coverage detected