We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed060af commit 8d71eeeCopy full SHA for 8d71eee
src/OneScript.Core/Values/BslPrimitiveValue.cs
@@ -27,8 +27,8 @@ public override int CompareTo(BslValue other)
27
}
28
catch (InvalidOperationException) // если тип не зарегистрирован
29
{
30
- typeOfThis ??= GetType().ToString();
31
- typeOfOther ??= GetType().ToString();
+ typeOfThis ??= this.GetType().ToString();
+ typeOfOther ??= other.GetType().ToString();
32
33
34
if (typeOfThis == typeOfOther)
0 commit comments