Co-authored-by: liusurong.lsr <liusurong.lsr@alibaba-inc.com>tags/1.0.0
| @@ -64,6 +64,10 @@ class ConditionProcessor: | |||
| expected=expected_value, | |||
| ) | |||
| group_results.append(result) | |||
| # Implemented short-circuit evaluation for logical conditions | |||
| if (operator == "and" and not result) or (operator == "or" and result): | |||
| final_result = result | |||
| return input_conditions, group_results, final_result | |||
| final_result = all(group_results) if operator == "and" else any(group_results) | |||
| return input_conditions, group_results, final_result | |||