evalAsyncFunc is the planned Interpretable for an asynchronous function call.
| 64 | |
| 65 | // evalAsyncFunc is the planned Interpretable for an asynchronous function call. |
| 66 | type evalAsyncFunc struct { |
| 67 | id int64 |
| 68 | function string |
| 69 | overload string |
| 70 | args []InterpretableV2 |
| 71 | impl functions.AsyncOp |
| 72 | } |
| 73 | |
| 74 | // ID implements the Interpretable interface method. |
| 75 | func (fn *evalAsyncFunc) ID() int64 { |
nothing calls this directly
no outgoing calls
no test coverage detected