Browse Source

Fix formatting

pull/2276/head
Siegfried Pammer 4 years ago
parent
commit
032bd5356a
  1. 32
      ICSharpCode.Decompiler/CSharp/RecordDecompiler.cs

32
ICSharpCode.Decompiler/CSharp/RecordDecompiler.cs

@ -859,18 +859,18 @@ namespace ICSharpCode.Decompiler.CSharp @@ -859,18 +859,18 @@ namespace ICSharpCode.Decompiler.CSharp
bool Visit(ILInstruction inst)
{
if (inst is BinaryNumericInstruction
{
Operator: BinaryNumericOperator.Add,
CheckForOverflow: false,
Left: BinaryNumericInstruction
{
Operator: BinaryNumericOperator.Add,
Operator: BinaryNumericOperator.Mul,
CheckForOverflow: false,
Left: BinaryNumericInstruction
{
Operator: BinaryNumericOperator.Mul,
CheckForOverflow: false,
Left: var left,
Right: LdcI4 { Value: -1521134295 }
},
Right: var right
})
Left: var left,
Right: LdcI4 { Value: -1521134295 }
},
Right: var right
})
{
if (!Visit(left))
return false;
@ -971,13 +971,13 @@ namespace ICSharpCode.Decompiler.CSharp @@ -971,13 +971,13 @@ namespace ICSharpCode.Decompiler.CSharp
target = null;
member = null;
if (inst is CallVirt
{
Method:
{
Method:
{
AccessorKind: System.Reflection.MethodSemanticsAttributes.Getter,
AccessorOwner: IProperty property
}
} call)
AccessorKind: System.Reflection.MethodSemanticsAttributes.Getter,
AccessorOwner: IProperty property
}
} call)
{
if (call.Arguments.Count != 1)
return false;

Loading…
Cancel
Save