add_operator_inputs(operator, vars, insert_before)#

Add inputs to an operator.

Parameters:
operatorsuite.Operator

Input operator.

varsList[Tuple[str, TX]]

Name/type expression trees.

insert_beforesuite.LocalVariable

Insertion point of the inputs. When this parameter is not None, it is an existing input of the operator. The inputs are inserted before this input. Otherwise, the inputs are added at the end.

Returns:
List[suite.LocalVariable]

List of added inputs.

Notes

This is an interface change with respect to the SCADE Creation Library. The pairs β€œname”/”type” tree are now embedded in a list of tuples.