mirror of https://github.com/icsharpcode/ILSpy.git
16 changed files with 6329 additions and 45 deletions
@ -0,0 +1,484 @@ |
|||||||
|
// 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.
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Globalization; |
||||||
|
using System.Linq; |
||||||
|
using System.Threading; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.Tests.TestCases.Pretty |
||||||
|
{ |
||||||
|
public class InitializerTests |
||||||
|
{ |
||||||
|
#region Types and helpers
|
||||||
|
public class C |
||||||
|
{ |
||||||
|
public int Z; |
||||||
|
public S Y; |
||||||
|
public List<S> L; |
||||||
|
} |
||||||
|
|
||||||
|
public struct S |
||||||
|
{ |
||||||
|
public int A; |
||||||
|
public int B; |
||||||
|
|
||||||
|
public S(int a) |
||||||
|
{ |
||||||
|
this.A = a; |
||||||
|
this.B = 0; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
private enum MyEnum |
||||||
|
{ |
||||||
|
a = 0, |
||||||
|
b = 1 |
||||||
|
} |
||||||
|
|
||||||
|
private enum MyEnum2 |
||||||
|
{ |
||||||
|
c = 0, |
||||||
|
d = 1 |
||||||
|
} |
||||||
|
|
||||||
|
private class Data |
||||||
|
{ |
||||||
|
public List<MyEnum2> FieldList = new List<MyEnum2>(); |
||||||
|
public MyEnum a { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
public MyEnum b { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
public List<MyEnum2> PropertyList { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
|
||||||
|
public Data MoreData { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
|
||||||
|
public StructData NestedStruct { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
|
||||||
|
public Data this[int i] { |
||||||
|
get { |
||||||
|
return null; |
||||||
|
} |
||||||
|
set { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public Data this[int i, string j] { |
||||||
|
get { |
||||||
|
return null; |
||||||
|
} |
||||||
|
set { |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public event EventHandler TestEvent; |
||||||
|
} |
||||||
|
|
||||||
|
private struct StructData |
||||||
|
{ |
||||||
|
public int Field; |
||||||
|
public int Property { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
|
||||||
|
public Data MoreData { |
||||||
|
get; |
||||||
|
set; |
||||||
|
} |
||||||
|
|
||||||
|
public StructData(int initialValue) |
||||||
|
{ |
||||||
|
this = default(StructData); |
||||||
|
this.Field = initialValue; |
||||||
|
this.Property = initialValue; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// Helper methods used to ensure initializers used within expressions work correctly
|
||||||
|
private static void X(object a, object b) |
||||||
|
{ |
||||||
|
} |
||||||
|
|
||||||
|
private static object Y() |
||||||
|
{ |
||||||
|
return null; |
||||||
|
} |
||||||
|
|
||||||
|
public static void TestCall(int a, Thread thread) |
||||||
|
{ |
||||||
|
|
||||||
|
} |
||||||
|
|
||||||
|
public static C TestCall(int a, C c) |
||||||
|
{ |
||||||
|
return c; |
||||||
|
} |
||||||
|
#endregion
|
||||||
|
|
||||||
|
public C Test1() |
||||||
|
{ |
||||||
|
C c = new C(); |
||||||
|
c.L = new List<S>(); |
||||||
|
c.L.Add(new S(1)); |
||||||
|
return c; |
||||||
|
} |
||||||
|
|
||||||
|
public C Test1Alternative() |
||||||
|
{ |
||||||
|
return InitializerTests.TestCall(1, new C { |
||||||
|
L = new List<S> { |
||||||
|
new S(1) |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public C Test2() |
||||||
|
{ |
||||||
|
C c = new C(); |
||||||
|
c.Z = 1; |
||||||
|
c.Z = 2; |
||||||
|
return c; |
||||||
|
} |
||||||
|
|
||||||
|
public C Test3() |
||||||
|
{ |
||||||
|
C c = new C(); |
||||||
|
c.Y = new S(1); |
||||||
|
c.Y.A = 2; |
||||||
|
return c; |
||||||
|
} |
||||||
|
|
||||||
|
public C Test3b() |
||||||
|
{ |
||||||
|
return InitializerTests.TestCall(0, new C { |
||||||
|
Z = 1, |
||||||
|
Y = { |
||||||
|
A = 2 |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public C Test4() |
||||||
|
{ |
||||||
|
C c = new C(); |
||||||
|
c.Y.A = 1; |
||||||
|
c.Z = 2; |
||||||
|
c.Y.B = 3; |
||||||
|
return c; |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public static void CollectionInitializerList() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new List<int> { |
||||||
|
1, |
||||||
|
2, |
||||||
|
3 |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static object RecursiveCollectionInitializer() |
||||||
|
{ |
||||||
|
List<object> list = new List<object>(); |
||||||
|
list.Add(list); |
||||||
|
return list; |
||||||
|
} |
||||||
|
|
||||||
|
public static void CollectionInitializerDictionary() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Dictionary<string, int> { |
||||||
|
{ |
||||||
|
"First", |
||||||
|
1 |
||||||
|
}, |
||||||
|
{ |
||||||
|
"Second", |
||||||
|
2 |
||||||
|
}, |
||||||
|
{ |
||||||
|
"Third", |
||||||
|
3 |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void CollectionInitializerDictionaryWithEnumTypes() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Dictionary<MyEnum, MyEnum2> { |
||||||
|
{ |
||||||
|
MyEnum.a, |
||||||
|
MyEnum2.c |
||||||
|
}, |
||||||
|
{ |
||||||
|
MyEnum.b, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void NotACollectionInitializer() |
||||||
|
{ |
||||||
|
List<int> list = new List<int>(); |
||||||
|
list.Add(1); |
||||||
|
list.Add(2); |
||||||
|
list.Add(3); |
||||||
|
InitializerTests.X(InitializerTests.Y(), list); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializer() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.a |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void NotAnObjectInitializer() |
||||||
|
{ |
||||||
|
Data data = new Data(); |
||||||
|
data.a = MyEnum.a; |
||||||
|
InitializerTests.X(InitializerTests.Y(), data); |
||||||
|
} |
||||||
|
|
||||||
|
public static void NotAnObjectInitializerWithEvent() |
||||||
|
{ |
||||||
|
Data data = new Data(); |
||||||
|
data.TestEvent += delegate(object sender, EventArgs e) { |
||||||
|
Console.WriteLine(); |
||||||
|
}; |
||||||
|
InitializerTests.X(InitializerTests.Y(), data); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializerAssignCollectionToField() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.a, |
||||||
|
FieldList = new List<MyEnum2> { |
||||||
|
MyEnum2.c, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializerAddToCollectionInField() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.a, |
||||||
|
FieldList = { |
||||||
|
MyEnum2.c, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializerAssignCollectionToProperty() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.a, |
||||||
|
PropertyList = new List<MyEnum2> { |
||||||
|
MyEnum2.c, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializerAddToCollectionInProperty() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.a, |
||||||
|
PropertyList = { |
||||||
|
MyEnum2.c, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void ObjectInitializerWithInitializationOfNestedObjects() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.a, |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.b |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
private static int GetInt() |
||||||
|
{ |
||||||
|
return 1; |
||||||
|
} |
||||||
|
|
||||||
|
private static string GetString() |
||||||
|
{ |
||||||
|
return "Test"; |
||||||
|
} |
||||||
|
|
||||||
|
#if !LEGACY_CSC
|
||||||
|
public static void SimpleDictInitializer() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.a, |
||||||
|
[2] = null |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void MixedObjectAndDictInitializer() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.a, |
||||||
|
[InitializerTests.GetInt()] = { |
||||||
|
a = MyEnum.b, |
||||||
|
FieldList = { |
||||||
|
MyEnum2.c |
||||||
|
}, |
||||||
|
[InitializerTests.GetInt(), InitializerTests.GetString()] = new Data(), |
||||||
|
[2] = null |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
#endif
|
||||||
|
|
||||||
|
public static void ObjectInitializerWithInitializationOfDeeplyNestedObjects() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
a = MyEnum.b, |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.a, |
||||||
|
MoreData = { |
||||||
|
MoreData = { |
||||||
|
MoreData = { |
||||||
|
MoreData = { |
||||||
|
MoreData = { |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.b |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void CollectionInitializerInsideObjectInitializers() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
MoreData = new Data { |
||||||
|
a = MyEnum.a, |
||||||
|
b = MyEnum.b, |
||||||
|
PropertyList = { |
||||||
|
MyEnum2.c |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void NotAStructInitializer_DefaultConstructor() |
||||||
|
{ |
||||||
|
StructData structData = default(StructData); |
||||||
|
structData.Field = 1; |
||||||
|
structData.Property = 2; |
||||||
|
InitializerTests.X(InitializerTests.Y(), structData); |
||||||
|
} |
||||||
|
|
||||||
|
public static void StructInitializer_DefaultConstructor() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new StructData { |
||||||
|
Field = 1, |
||||||
|
Property = 2 |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void NotAStructInitializer_ExplicitConstructor() |
||||||
|
{ |
||||||
|
StructData structData = new StructData(0); |
||||||
|
structData.Field = 1; |
||||||
|
structData.Property = 2; |
||||||
|
InitializerTests.X(InitializerTests.Y(), structData); |
||||||
|
} |
||||||
|
|
||||||
|
public static void StructInitializer_ExplicitConstructor() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new StructData(0) { |
||||||
|
Field = 1, |
||||||
|
Property = 2 |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void StructInitializerWithInitializationOfNestedObjects() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new StructData { |
||||||
|
MoreData = { |
||||||
|
a = MyEnum.a, |
||||||
|
FieldList = { |
||||||
|
MyEnum2.c, |
||||||
|
MyEnum2.d |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void StructInitializerWithinObjectInitializer() |
||||||
|
{ |
||||||
|
InitializerTests.X(InitializerTests.Y(), new Data { |
||||||
|
NestedStruct = new StructData(2) { |
||||||
|
Field = 1, |
||||||
|
Property = 2 |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
public static void Bug270_NestedInitialisers() |
||||||
|
{ |
||||||
|
NumberFormatInfo[] source = null; |
||||||
|
|
||||||
|
InitializerTests.TestCall(0, new Thread(InitializerTests.Bug270_NestedInitialisers) { |
||||||
|
Priority = ThreadPriority.BelowNormal, |
||||||
|
CurrentCulture = new CultureInfo(0) { |
||||||
|
DateTimeFormat = new DateTimeFormatInfo { |
||||||
|
ShortDatePattern = "ddmmyy" |
||||||
|
}, |
||||||
|
NumberFormat = (from format in source |
||||||
|
where format.CurrencySymbol == "$" |
||||||
|
select format).First() |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,33 @@ |
|||||||
|
// Copyright (c) 2017 Siegfried Pammer
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
|
||||||
|
using System; |
||||||
|
using System.Collections.Generic; |
||||||
|
using System.Text; |
||||||
|
|
||||||
|
namespace ICSharpCode.Decompiler.IL |
||||||
|
{ |
||||||
|
partial class DefaultValue |
||||||
|
{ |
||||||
|
/// <summary>
|
||||||
|
/// Gets whether the IL stack was empty at the point of this instruction.
|
||||||
|
/// (not counting the argument of the instruction itself)
|
||||||
|
/// </summary>
|
||||||
|
public bool ILStackWasEmpty; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue