@@ -230,6 +230,8 @@ public constant ErrorID GENERATECODE_INVARS_HAS_FUNCTION_PTR=142;
230
230
public constant ErrorID LOOKUP_COMP_FOUND_TYPE = 143 ;
231
231
public constant ErrorID DUPLICATE_ELEMENTS_NOT_SYNTACTICALLY_IDENTICAL = 144 ;
232
232
public constant ErrorID TUPLE_ASSIGN_CREFS_ONLY = 145 ;
233
+ public constant ErrorID NON_STREAM_OPERAND_IN_STREAM_OPERATOR = 146 ;
234
+ public constant ErrorID UNBALANCED_CONNECTOR = 147 ;
233
235
234
236
235
237
public constant ErrorID UNBOUND_PARAMETER_WITH_START_VALUE_WARNING = 499 ;
@@ -496,6 +498,10 @@ protected constant list<tuple<Integer, MessageType, Severity, String>> errorTabl
496
498
"Duplicate class definitions (due to inheritance) not equivalent, first definiton is: %s, second definition is: %s" ),
497
499
(PACKAGE_VARIABLE_NOT_CONSTANT , TRANSLATION (),ERROR (),"Variable %s in package %s is not constant" ),
498
500
(RECURSIVE_DEFINITION ,TRANSLATION (),ERROR (),"Class %s has a recursive definition, i.e. contains an instance of itself" ),
501
+ (NON_STREAM_OPERAND_IN_STREAM_OPERATOR (), TRANSLATION (), ERROR (),
502
+ "Operand %s to operator %s in component %s is not a stream variable." ),
503
+ (UNBALANCED_CONNECTOR (), TRANSLATION (), WARNING (),
504
+ "Connector %s is not balanced: %s" ),
499
505
(UNBOUND_PARAMETER_WARNING ,TRANSLATION (),WARNING (),
500
506
"Parameter %s has neither value nor start value, and is fixed during initialization (fixed=true)" ),
501
507
(UNBOUND_PARAMETER_WITH_START_VALUE_WARNING ,TRANSLATION (),WARNING (),
0 commit comments