NewCall creates a new call Interpretable.
(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp)
| 697 | |
| 698 | // NewCall creates a new call Interpretable. |
| 699 | func NewCall(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp) InterpretableCall { |
| 700 | return &evalVarArgs{ |
| 701 | id: id, |
| 702 | function: function, |
| 703 | overload: overload, |
| 704 | args: args, |
| 705 | impl: impl, |
| 706 | } |
| 707 | } |
| 708 | |
| 709 | // ID implements the Interpretable interface method. |
| 710 | func (fn *evalVarArgs) ID() int64 { |
no outgoing calls