state._fsp--;
if (state.failed) return result;
if ( state.backtracking==0 ) {
descr = ConstraintConnectiveDescr.newAnd();
RelationalExprDescr rel = new RelationalExprDescr( "!=", false, null, leftDescr, (e1!=null?e1.result:null) );
descr.addOrMerge( rel );
result = descr;
}
// src/main/resources/org/drools/lang/DRLExpressions.g:265:7: ( COMMA e2= expression )*
loop27:
do {
int alt27=2;
int LA27_0 = input.LA(1);
if ( (LA27_0==COMMA) ) {
alt27=1;
}
switch (alt27) {
case 1 :
// src/main/resources/org/drools/lang/DRLExpressions.g:265:8: COMMA e2= expression
{
match(input,COMMA,FOLLOW_COMMA_in_inExpression1331); if (state.failed) return result;
pushFollow(FOLLOW_expression_in_inExpression1335);
e2=expression();
state._fsp--;
if (state.failed) return result;
if ( state.backtracking==0 ) {
RelationalExprDescr rel = new RelationalExprDescr( "!=", false, null, leftDescr, (e2!=null?e2.result:null) );
descr.addOrMerge( rel );
}
}
break;
default :
break loop27;
}
} while (true);
match(input,RIGHT_PAREN,FOLLOW_RIGHT_PAREN_in_inExpression1356); if (state.failed) return result;
}
break;
case 2 :
// src/main/resources/org/drools/lang/DRLExpressions.g:270:7: in= in_key LEFT_PAREN e1= expression ( COMMA e2= expression )* RIGHT_PAREN
{
pushFollow(FOLLOW_in_key_in_inExpression1366);
in_key();
state._fsp--;
if (state.failed) return result;
match(input,LEFT_PAREN,FOLLOW_LEFT_PAREN_in_inExpression1368); if (state.failed) return result;
pushFollow(FOLLOW_expression_in_inExpression1372);
e1=expression();
state._fsp--;
if (state.failed) return result;
if ( state.backtracking==0 ) {
descr = ConstraintConnectiveDescr.newOr();
RelationalExprDescr rel = new RelationalExprDescr( "==", false, null, leftDescr, (e1!=null?e1.result:null) );
descr.addOrMerge( rel );
result = descr;
}
// src/main/resources/org/drools/lang/DRLExpressions.g:276:7: ( COMMA e2= expression )*
loop28:
do {
int alt28=2;
int LA28_0 = input.LA(1);
if ( (LA28_0==COMMA) ) {
alt28=1;
}
switch (alt28) {
case 1 :
// src/main/resources/org/drools/lang/DRLExpressions.g:276:8: COMMA e2= expression
{
match(input,COMMA,FOLLOW_COMMA_in_inExpression1392); if (state.failed) return result;
pushFollow(FOLLOW_expression_in_inExpression1396);
e2=expression();
state._fsp--;
if (state.failed) return result;
if ( state.backtracking==0 ) {
RelationalExprDescr rel = new RelationalExprDescr( "==", false, null, leftDescr, (e2!=null?e2.result:null) );
descr.addOrMerge( rel );
}
}