NewCall creates a new call Interpretable.
(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp)
| 680 | |
| 681 | // NewCall creates a new call Interpretable. |
| 682 | func NewCall(id int64, function, overload string, args []InterpretableV2, impl functions.FunctionOp) InterpretableCall { |
| 683 | return &evalVarArgs{ |
| 684 | id: id, |
| 685 | function: function, |
| 686 | overload: overload, |
| 687 | args: args, |
| 688 | impl: impl, |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | // ID implements the Interpretable interface method. |
| 693 | func (fn *evalVarArgs) ID() int64 { |
no outgoing calls