mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
291 lines
6.3 KiB
291 lines
6.3 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team |
|
// |
|
// Permission is hereby granted, free of charge, to any person obtaining a copy of this |
|
// software and associated documentation files (the "Software"), to deal in the Software |
|
// without restriction, including without limitation the rights to use, copy, modify, merge, |
|
// publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
|
// to whom the Software is furnished to do so, subject to the following conditions: |
|
// |
|
// The above copyright notice and this permission notice shall be included in all copies or |
|
// substantial portions of the Software. |
|
// |
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
|
// INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
|
// PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
|
// FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
|
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
|
// DEALINGS IN THE SOFTWARE. |
|
|
|
#pragma warning disable CS9113 |
|
|
|
using System; |
|
using System.Collections.Generic; |
|
|
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
|
{ |
|
public class ConstructorInitializers |
|
{ |
|
public class JArray |
|
{ |
|
private readonly List<object> objects = new List<object>(); |
|
private readonly List<string> strings = new List<string>(); |
|
|
|
public JArray() |
|
{ |
|
} |
|
|
|
public JArray(params object[] items) |
|
{ |
|
foreach (object item in items) |
|
{ |
|
objects.Add(item); |
|
} |
|
} |
|
|
|
public JArray(object content) |
|
{ |
|
objects.Add(content); |
|
} |
|
|
|
public JArray(string content) |
|
{ |
|
strings.Add(content); |
|
} |
|
} |
|
|
|
public struct Issue1743 |
|
{ |
|
public int Leet; |
|
|
|
public Issue1743(int dummy) |
|
: this(dummy, dummy) |
|
{ |
|
Leet += dummy; |
|
} |
|
|
|
public Issue1743(int dummy1, int dummy2) |
|
{ |
|
Leet = dummy1 + dummy2; |
|
} |
|
} |
|
|
|
#if CS120 |
|
public struct Issue1743WithPrimaryCtor(int dummy1, int dummy2) |
|
{ |
|
public int Leet = dummy1 + dummy2; |
|
|
|
public Issue1743WithPrimaryCtor(int dummy) |
|
: this(dummy, dummy) |
|
{ |
|
Leet += dummy; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// This is info about the class |
|
/// </summary> |
|
private struct StructWithXmlDocCtor |
|
{ |
|
public int A; |
|
|
|
public int B; |
|
|
|
/// <summary> |
|
/// This is info about the constructor |
|
/// </summary> |
|
public StructWithXmlDocCtor(int a, int b) |
|
{ |
|
A = a; |
|
B = b; |
|
} |
|
} |
|
|
|
/// <summary> |
|
/// This is info about the class |
|
/// </summary> |
|
private struct StructWithoutXmlDocCtor(int a, int b) |
|
{ |
|
public int A = a; |
|
|
|
public int B = b; |
|
} |
|
#endif |
|
|
|
public class ClassWithConstant |
|
{ |
|
// using decimal constants has the effect that there is a cctor |
|
// generated containing the explicit initialization of this field. |
|
// The type is marked beforefieldinit |
|
private const decimal a = 1.0m; |
|
} |
|
|
|
public class ClassWithConstantAndStaticCtor |
|
{ |
|
// The type is not marked beforefieldinit |
|
private const decimal a = 1.0m; |
|
|
|
static ClassWithConstantAndStaticCtor() |
|
{ |
|
|
|
} |
|
} |
|
|
|
public class MethodCallInCtorInit |
|
{ |
|
public MethodCallInCtorInit(ConsoleKey key) |
|
#if MCS5 |
|
: this(((int)key/*cast due to .constrained prefix*/).ToString()) |
|
#else |
|
: this(((int)key).ToString()) |
|
#endif |
|
{ |
|
} |
|
|
|
public MethodCallInCtorInit(string s) |
|
{ |
|
} |
|
} |
|
|
|
public struct SimpleStruct |
|
{ |
|
public int Field1; |
|
public int Field2; |
|
} |
|
|
|
public class UnsafeFields |
|
{ |
|
public unsafe static int StaticSizeOf = sizeof(SimpleStruct); |
|
public unsafe int SizeOf = sizeof(SimpleStruct); |
|
} |
|
|
|
#if CS120 |
|
public class ClassWithPrimaryCtorUsingGlobalParameter(int a) |
|
{ |
|
public void Print() |
|
{ |
|
Console.WriteLine(a); |
|
} |
|
} |
|
|
|
public class ClassWithPrimaryCtorUsingGlobalParameterAssignedToField(int a) |
|
{ |
|
#pragma warning disable CS9124 // Parameter is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event. |
|
private readonly int _a = a; |
|
#pragma warning restore CS9124 // Parameter is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event. |
|
|
|
public void Print() |
|
{ |
|
Console.WriteLine(_a); |
|
} |
|
} |
|
|
|
public class ClassWithPrimaryCtorUsingGlobalParameterAssignedToFieldAndUsedInMethod(int a) |
|
{ |
|
#pragma warning disable CS9124 // Parameter is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event. |
|
private readonly int _a = a; |
|
#pragma warning restore CS9124 // Parameter is captured into the state of the enclosing type and its value is also used to initialize a field, property, or event. |
|
|
|
public void Print() |
|
{ |
|
Console.WriteLine(a); |
|
} |
|
} |
|
|
|
public class ClassWithPrimaryCtorUsingGlobalParameterAssignedToProperty(int a) |
|
{ |
|
public int A { get; set; } = a; |
|
|
|
public void Print() |
|
{ |
|
Console.WriteLine(A); |
|
} |
|
} |
|
|
|
public class ClassWithPrimaryCtorUsingGlobalParameterInExpressionAssignedToProperty(int a) |
|
{ |
|
public int A { get; set; } = (int)Math.Abs(Math.PI * (double)a); |
|
|
|
public void Print() |
|
{ |
|
Console.WriteLine(A); |
|
} |
|
} |
|
|
|
public class ClassWithPrimaryCtorUsingGlobalParameterAssignedToEvent(EventHandler a) |
|
{ |
|
public event EventHandler A = a; |
|
|
|
public void Print() |
|
{ |
|
Console.WriteLine(this.A); |
|
} |
|
} |
|
#endif |
|
|
|
public class NoRecordButCopyConstructorLike |
|
{ |
|
private NoRecordButCopyConstructorLike parent; |
|
|
|
public NoRecordButCopyConstructorLike(NoRecordButCopyConstructorLike parent) |
|
{ |
|
this.parent = parent; |
|
} |
|
} |
|
|
|
#if CS100 |
|
public class PrimaryCtorClassThisChain(Guid id) |
|
{ |
|
public Guid guid { get; } = id; |
|
|
|
public PrimaryCtorClassThisChain(Guid id, int value) |
|
: this(Guid.NewGuid()) |
|
{ |
|
|
|
} |
|
public PrimaryCtorClassThisChain() |
|
: this(Guid.NewGuid(), 222) |
|
{ |
|
|
|
} |
|
} |
|
#if EXPECTED_OUTPUT |
|
public class UnusedPrimaryCtorParameter |
|
{ |
|
public UnusedPrimaryCtorParameter(int unused) |
|
{ |
|
} |
|
} |
|
#else |
|
public class UnusedPrimaryCtorParameter(int unused) |
|
{ |
|
} |
|
#endif |
|
#if OPT && EXPECTED_OUTPUT |
|
public class C8(object obj) |
|
{ |
|
public int Test() |
|
{ |
|
object obj2 = obj; |
|
if (obj2 is int) |
|
{ |
|
return (int)obj2; |
|
} |
|
return 0; |
|
} |
|
} |
|
#else |
|
public class C8(object obj) |
|
{ |
|
public int Test() |
|
{ |
|
if (obj is int result) |
|
{ |
|
return result; |
|
} |
|
return 0; |
|
} |
|
} |
|
#endif |
|
#endif |
|
} |
|
}
|
|
|