Browse Source

Fix indentation

pull/728/merge
Daniel Grunwald 9 years ago
parent
commit
38a81d1edf
  1. 8
      ICSharpCode.Decompiler/IL/Instructions/PatternMatching.cs

8
ICSharpCode.Decompiler/IL/Instructions/PatternMatching.cs

@ -254,9 +254,9 @@ namespace ICSharpCode.Decompiler.IL @@ -254,9 +254,9 @@ namespace ICSharpCode.Decompiler.IL
field = null;
return false;
}
public bool MatchStsFld(out IField field, out ILInstruction value)
{
{
if (this is StObj stobj && stobj.Target is LdsFlda ldsflda) {
field = ldsflda.Field;
value = stobj.Value;
@ -266,9 +266,9 @@ namespace ICSharpCode.Decompiler.IL @@ -266,9 +266,9 @@ namespace ICSharpCode.Decompiler.IL
value = null;
return false;
}
public bool MatchStFld(out ILInstruction target, out IField field, out ILInstruction value)
{
{
if (this is StObj stobj && stobj.Target is LdFlda ldflda) {
target = ldflda.Target;
field = ldflda.Field;

Loading…
Cancel
Save