128 changed files with 2542 additions and 544 deletions
@ -1,53 +0,0 @@ |
|||||||
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
|
||||||
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
|
|
||||||
|
|
||||||
|
|
||||||
using System; |
|
||||||
using System.IO; |
|
||||||
using NUnit.Framework; |
|
||||||
using ICSharpCode.NRefactory.PatternMatching; |
|
||||||
|
|
||||||
namespace ICSharpCode.NRefactory.CSharp.Parser.Expression |
|
||||||
{ |
|
||||||
[TestFixture] |
|
||||||
public class AliasReferenceExpressionTests |
|
||||||
{ |
|
||||||
[Test] |
|
||||||
public void GlobalReferenceExpressionTest() |
|
||||||
{ |
|
||||||
CSharpParser parser = new CSharpParser(); |
|
||||||
AstType type = parser.ParseTypeReference(new StringReader("global::System")); |
|
||||||
Assert.IsTrue( |
|
||||||
new MemberType { |
|
||||||
Target = new SimpleType("global"), |
|
||||||
IsDoubleColon = true, |
|
||||||
MemberName = "System" |
|
||||||
}.IsMatch(type) |
|
||||||
); |
|
||||||
} |
|
||||||
|
|
||||||
[Test] |
|
||||||
public void GlobalTypeDeclaration() |
|
||||||
{ |
|
||||||
VariableDeclarationStatement lvd = ParseUtilCSharp.ParseStatement<VariableDeclarationStatement>("global::System.String a;"); |
|
||||||
Assert.IsTrue( |
|
||||||
new VariableDeclarationStatement { |
|
||||||
Type = new MemberType { |
|
||||||
Target = new MemberType { |
|
||||||
Target = new SimpleType("global"), |
|
||||||
IsDoubleColon = true, |
|
||||||
MemberName = "System" |
|
||||||
}, |
|
||||||
IsDoubleColon = false, |
|
||||||
MemberName = "String", |
|
||||||
}, |
|
||||||
Variables = { |
|
||||||
new VariableInitializer("a") |
|
||||||
} |
|
||||||
}.IsMatch(lvd) |
|
||||||
); |
|
||||||
} |
|
||||||
|
|
||||||
// TODO: add tests for aliases other than 'global'
|
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,40 @@ |
|||||||
|
// 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 NUnit.Framework; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.CSharp.Parser.Expression |
||||||
|
{ |
||||||
|
[TestFixture] |
||||||
|
public class AnonymousTypeCreateExpressionTests |
||||||
|
{ |
||||||
|
[Test] |
||||||
|
public void Simple() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new { Name = \"Test\", Price, Something.Property }", |
||||||
|
new AnonymousTypeCreateExpression { |
||||||
|
Initializers = { |
||||||
|
new NamedArgumentExpression("Name", new PrimitiveExpression("Test")), |
||||||
|
new IdentifierExpression("Price"), |
||||||
|
new IdentifierExpression("Something").Member("Property") |
||||||
|
}}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,71 @@ |
|||||||
|
// 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 NUnit.Framework; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.CSharp.Parser.Expression |
||||||
|
{ |
||||||
|
[TestFixture] |
||||||
|
public class ArrayCreateExpressionTests |
||||||
|
{ |
||||||
|
[Test] |
||||||
|
public void ArrayCreateExpressionTest1() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new int[5]", |
||||||
|
new ArrayCreateExpression { |
||||||
|
Type = new PrimitiveType("int"), |
||||||
|
Arguments = { new PrimitiveExpression(5) } |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void MultidimensionalNestedArray() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new int[5,2][,,][]", |
||||||
|
new ArrayCreateExpression { |
||||||
|
Type = new PrimitiveType("int"), |
||||||
|
Arguments = { new PrimitiveExpression(5), new PrimitiveExpression(2) }, |
||||||
|
AdditionalArraySpecifiers = { |
||||||
|
new ArraySpecifier(3), |
||||||
|
new ArraySpecifier(1) |
||||||
|
} |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void ImplicitlyTypedArrayCreateExpression() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new[] { 1, 10, 100, 1000 }", |
||||||
|
new ArrayCreateExpression { |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new PrimitiveExpression(1), |
||||||
|
new PrimitiveExpression(10), |
||||||
|
new PrimitiveExpression(100), |
||||||
|
new PrimitiveExpression(1000) |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
} |
||||||
|
} |
||||||
|
} |
@ -1,56 +0,0 @@ |
|||||||
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
|
|
||||||
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
|
|
||||||
|
|
||||||
using System; |
|
||||||
using NUnit.Framework; |
|
||||||
|
|
||||||
namespace ICSharpCode.NRefactory.CSharp.Parser.Expression |
|
||||||
{ |
|
||||||
[TestFixture] |
|
||||||
public class ArrayObjectCreateExpressionTests |
|
||||||
{ |
|
||||||
[Test] |
|
||||||
public void ArrayCreateExpressionTest1() |
|
||||||
{ |
|
||||||
ParseUtilCSharp.AssertExpression( |
|
||||||
"new int[5]", |
|
||||||
new ArrayCreateExpression { |
|
||||||
Type = new PrimitiveType("int"), |
|
||||||
Arguments = { new PrimitiveExpression(5) } |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
[Test] |
|
||||||
public void MultidimensionalNestedArray() |
|
||||||
{ |
|
||||||
ParseUtilCSharp.AssertExpression( |
|
||||||
"new int[5,2][,,][]", |
|
||||||
new ArrayCreateExpression { |
|
||||||
Type = new PrimitiveType("int"), |
|
||||||
Arguments = { new PrimitiveExpression(5), new PrimitiveExpression(2) }, |
|
||||||
AdditionalArraySpecifiers = { |
|
||||||
new ArraySpecifier(3), |
|
||||||
new ArraySpecifier(1) |
|
||||||
} |
|
||||||
}); |
|
||||||
} |
|
||||||
|
|
||||||
[Test] |
|
||||||
public void ImplicitlyTypedArrayCreateExpression() |
|
||||||
{ |
|
||||||
ParseUtilCSharp.AssertExpression( |
|
||||||
"new[] { 1, 10, 100, 1000 }", |
|
||||||
new ArrayCreateExpression { |
|
||||||
Initializer = new ArrayInitializerExpression { |
|
||||||
Elements = { |
|
||||||
new PrimitiveExpression(1), |
|
||||||
new PrimitiveExpression(10), |
|
||||||
new PrimitiveExpression(100), |
|
||||||
new PrimitiveExpression(1000) |
|
||||||
} |
|
||||||
} |
|
||||||
}); |
|
||||||
|
|
||||||
} |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,238 @@ |
|||||||
|
// 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 NUnit.Framework; |
||||||
|
|
||||||
|
namespace ICSharpCode.NRefactory.CSharp.Parser.Expression |
||||||
|
{ |
||||||
|
[TestFixture] |
||||||
|
public class ObjectCreateExpressionTests |
||||||
|
{ |
||||||
|
[Test] |
||||||
|
public void Simple() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new MyObject(1, 2, 3)", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("MyObject"), |
||||||
|
Arguments = { |
||||||
|
new PrimitiveExpression(1), |
||||||
|
new PrimitiveExpression(2), |
||||||
|
new PrimitiveExpression(3) |
||||||
|
}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void Nullable() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new IntPtr?(1)", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("IntPtr").MakeNullableType(), |
||||||
|
Arguments = { new PrimitiveExpression(1) } |
||||||
|
}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void ObjectInitializer() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Point() { X = 0, Y = 1 }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Point"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(0)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(1)) |
||||||
|
} |
||||||
|
}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void ObjectInitializerWithoutParenthesis() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Point { X = 0, Y = 1 }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Point"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(0)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(1)) |
||||||
|
} |
||||||
|
}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void ObjectInitializerWithTrailingComma() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Point() { X = 0, Y = 1, }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Point"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(0)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(1)) |
||||||
|
} |
||||||
|
}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void NestedObjectInitializer() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Rectangle { P1 = new Point { X = 0, Y = 1 }, P2 = new Point { X = 2, Y = 3 } }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Rectangle"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression( |
||||||
|
"P1", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Point"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(0)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(1)) |
||||||
|
} |
||||||
|
}}), |
||||||
|
new AssignmentExpression( |
||||||
|
"P2", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Point"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(2)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(3)) |
||||||
|
} |
||||||
|
}}) |
||||||
|
}}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void NestedObjectInitializerForPreinitializedProperty() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Rectangle { P1 = { X = 0, Y = 1 }, P2 = { X = 2, Y = 3 } }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Rectangle"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression( |
||||||
|
"P1", |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(0)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(1)) |
||||||
|
} |
||||||
|
}), |
||||||
|
new AssignmentExpression( |
||||||
|
"P2", |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("X", new PrimitiveExpression(2)), |
||||||
|
new AssignmentExpression("Y", new PrimitiveExpression(3)) |
||||||
|
} |
||||||
|
}) |
||||||
|
}}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void CollectionInitializer() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new List<int> { 0, 1, 2 }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("List", new PrimitiveType("int")), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new PrimitiveExpression(0), |
||||||
|
new PrimitiveExpression(1), |
||||||
|
new PrimitiveExpression(2) |
||||||
|
}}}); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
[Test] |
||||||
|
public void DictionaryInitializer() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
"new Dictionary<string, int> { { \"a\", 0 }, { \"b\", 1 } }", |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Dictionary", new PrimitiveType("string"), new PrimitiveType("int")), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { new PrimitiveExpression("a"), new PrimitiveExpression(0) } |
||||||
|
}, |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { new PrimitiveExpression("b"), new PrimitiveExpression(1) } |
||||||
|
} |
||||||
|
}}}); |
||||||
|
} |
||||||
|
|
||||||
|
[Test] |
||||||
|
public void ComplexCollectionInitializer() |
||||||
|
{ |
||||||
|
ParseUtilCSharp.AssertExpression( |
||||||
|
@"new List<Contact> {
|
||||||
|
new Contact { |
||||||
|
Name = ""Chris"", |
||||||
|
PhoneNumbers = { ""206-555-0101"" } |
||||||
|
}, |
||||||
|
new Contact(additionalParameter) { |
||||||
|
Name = ""Bob"", |
||||||
|
PhoneNumbers = { ""650-555-0199"", ""425-882-8080"" } |
||||||
|
} |
||||||
|
}",
|
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("List", new SimpleType("Contact")), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Contact"), |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("Name", new PrimitiveExpression("Chris")), |
||||||
|
new AssignmentExpression( |
||||||
|
"PhoneNumbers", |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { new PrimitiveExpression("206-555-0101") } |
||||||
|
}) |
||||||
|
}}}, |
||||||
|
new ObjectCreateExpression { |
||||||
|
Type = new SimpleType("Contact"), |
||||||
|
Arguments = { new IdentifierExpression("additionalParameter") }, |
||||||
|
Initializer = new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new AssignmentExpression("Name", new PrimitiveExpression("Bob")), |
||||||
|
new AssignmentExpression( |
||||||
|
"PhoneNumbers", |
||||||
|
new ArrayInitializerExpression { |
||||||
|
Elements = { |
||||||
|
new PrimitiveExpression("650-555-0199"), |
||||||
|
new PrimitiveExpression("425-882-8080") |
||||||
|
} |
||||||
|
}) |
||||||
|
}}} |
||||||
|
}}}); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue