You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
yieldreturnnewTestCaseData(evaluator,"true && 1/0>0",typeof(DivideByZeroException)).SetCategory("Conditional And, positive left operand (should lead to exception)");
1462
+
yieldreturnnewTestCaseData(evaluator,"false || 1/0>0",typeof(DivideByZeroException)).SetCategory("Conditional Or, positive left operand (should lead to exception associativity)");
1463
+
yieldreturnnewTestCaseData(evaluator,"true && (true && 1/0>0)",typeof(DivideByZeroException)).SetCategory("Conditional And, positive left operand (should lead to exception)");
1464
+
yieldreturnnewTestCaseData(evaluator,"false || (false || 1/0>0)",typeof(DivideByZeroException)).SetCategory("Conditional Or, positive left operand (should lead to exception associativity)");
<PackageReleaseNotes>* Correction of Ternary conditional operator bug</PackageReleaseNotes>
21
+
<PackageReleaseNotes>* Correction of a bug on && and || operators when the right part throw an exception when only the left part should be evaluated</PackageReleaseNotes>
0 commit comments