-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix #1446 v2: операции с датой и приводимым к числу значением +тест #1447
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -99,7 +99,7 @@ public static IValue Add(IValue op1, IValue op2) | |||||||||||||||||||||||||||||||||||||||||||
return Create(s + op2.AsString()); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
if (op1 is BslDateValue date && op2.SystemType == BasicTypes.Number) | ||||||||||||||||||||||||||||||||||||||||||||
if (op1 is BslDateValue date) | ||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||
return Create(date + op2.AsNumber()); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
@@ -117,15 +117,15 @@ public static IValue Sub(IValue op1, IValue op2) | |||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||
return Create(n - op2.AsNumber()); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
if (op1 is BslDateValue date && op2 is BslNumericValue num) | ||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||
var result = date - num; | ||||||||||||||||||||||||||||||||||||||||||||
return Create(result); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
if (op1 is BslDateValue d1 && op2 is BslDateValue d2) | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
if (op1 is BslDateValue date) | ||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||
var diff = d1 - d2; | ||||||||||||||||||||||||||||||||||||||||||||
return Create(diff); | ||||||||||||||||||||||||||||||||||||||||||||
if (op2 is BslDateValue d2) | ||||||||||||||||||||||||||||||||||||||||||||
{ | ||||||||||||||||||||||||||||||||||||||||||||
return Create(date - d2); | ||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
return Create(date - op2.AsNumber()); | ||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+121
to
+128
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Verify the type of The removal of the type check for if (op1 is BslDateValue date)
{
if (op2 is BslDateValue d2)
{
return Create(date - d2);
}
+ if (!(op2 is BslNumericValue))
+ {
+ throw new InvalidOperationException("Cannot subtract non-numeric value from date.");
+ }
return Create(date - op2.AsNumber());
} Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||
// все к числовому типу. | ||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Verify the type of
op2
before performing addition.The removal of the type check for
op2
might lead to unexpected behavior ifop2
is not a number. Consider verifying the type ofop2
before performing the addition.Committable suggestion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A suitable exception can be thrown in the
AsNumber
function.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Mr-Rm, you're correct. If the
AsNumber
function already throws an appropriate exception when the conversion fails, then there's no need for an additional type check in theAdd
method. This approach keeps the code cleaner and avoids redundancy. I'll consider this when reviewing similar cases in the future. Thank you for the insight!Learnings added