- add_operator_outputs(operator, vars, insert_before)#
Add outputs to an operator.
- Parameters:
- operator
suite.Operator
Input operator.
- vars
List
[Tuple
[str
,TX
]] Name/type expression trees.
- insert_before
suite.LocalVariable
Insertion point of the outputs. When this parameter is not
None
, it is an existing output of the operator. The outputs are inserted before this input. Otherwise, the outputs are added at the end.
- operator
- Returns:
List
[suite.LocalVariable
]List of the added outputs.
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.