|
|
|
@ -32,11 +32,17 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@@ -32,11 +32,17 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
|
|
|
|
|
get; |
|
|
|
|
set; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static int StaticProperty { |
|
|
|
|
get; |
|
|
|
|
set; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool BoolProperty { |
|
|
|
|
get; |
|
|
|
|
set; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void SimpleInlineWithLocals() |
|
|
|
|
{ |
|
|
|
|
int index; |
|
|
|
@ -136,5 +142,10 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
@@ -136,5 +142,10 @@ namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty
|
|
|
|
|
{ |
|
|
|
|
return InstanceProperty = GetIndex(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool BoolPropertyTest(object x) |
|
|
|
|
{ |
|
|
|
|
return BoolProperty = (x != null); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|