1 | // Copyright (c) 2010-2013 AlphaSierraPapa for the SharpDevelop Team |
---|
2 | // |
---|
3 | // Permission is hereby granted, free of charge, to any person obtaining a copy of this |
---|
4 | // software and associated documentation files (the "Software"), to deal in the Software |
---|
5 | // without restriction, including without limitation the rights to use, copy, modify, merge, |
---|
6 | // publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons |
---|
7 | // to whom the Software is furnished to do so, subject to the following conditions: |
---|
8 | // |
---|
9 | // The above copyright notice and this permission notice shall be included in all copies or |
---|
10 | // substantial portions of the Software. |
---|
11 | // |
---|
12 | // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, |
---|
13 | // INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR |
---|
14 | // PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE |
---|
15 | // FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR |
---|
16 | // OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
17 | // DEALINGS IN THE SOFTWARE. |
---|
18 | |
---|
19 | using System; |
---|
20 | using System.Collections.Generic; |
---|
21 | |
---|
22 | namespace ICSharpCode.NRefactory.CSharp |
---|
23 | { |
---|
24 | /// <summary> |
---|
25 | /// new Type[Dimensions] |
---|
26 | /// </summary> |
---|
27 | public class ArrayCreateExpression : Expression |
---|
28 | { |
---|
29 | public readonly static TokenRole NewKeywordRole = new TokenRole ("new"); |
---|
30 | public readonly static Role<ArraySpecifier> AdditionalArraySpecifierRole = new Role<ArraySpecifier>("AdditionalArraySpecifier"); |
---|
31 | public readonly static Role<ArrayInitializerExpression> InitializerRole = new Role<ArrayInitializerExpression>("Initializer", ArrayInitializerExpression.Null); |
---|
32 | |
---|
33 | public CSharpTokenNode NewToken { |
---|
34 | get { return GetChildByRole (NewKeywordRole); } |
---|
35 | } |
---|
36 | |
---|
37 | public AstType Type { |
---|
38 | get { return GetChildByRole (Roles.Type); } |
---|
39 | set { SetChildByRole (Roles.Type, value); } |
---|
40 | } |
---|
41 | |
---|
42 | public AstNodeCollection<Expression> Arguments { |
---|
43 | get { return GetChildrenByRole (Roles.Argument); } |
---|
44 | } |
---|
45 | |
---|
46 | /// <summary> |
---|
47 | /// Gets additional array ranks (those without size info). |
---|
48 | /// Empty for "new int[5,1]"; will contain a single element for "new int[5][]". |
---|
49 | /// </summary> |
---|
50 | public AstNodeCollection<ArraySpecifier> AdditionalArraySpecifiers { |
---|
51 | get { return GetChildrenByRole(AdditionalArraySpecifierRole); } |
---|
52 | } |
---|
53 | |
---|
54 | public ArrayInitializerExpression Initializer { |
---|
55 | get { return GetChildByRole (InitializerRole); } |
---|
56 | set { SetChildByRole (InitializerRole, value); } |
---|
57 | } |
---|
58 | |
---|
59 | public override void AcceptVisitor (IAstVisitor visitor) |
---|
60 | { |
---|
61 | visitor.VisitArrayCreateExpression (this); |
---|
62 | } |
---|
63 | |
---|
64 | public override T AcceptVisitor<T> (IAstVisitor<T> visitor) |
---|
65 | { |
---|
66 | return visitor.VisitArrayCreateExpression (this); |
---|
67 | } |
---|
68 | |
---|
69 | public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data) |
---|
70 | { |
---|
71 | return visitor.VisitArrayCreateExpression (this, data); |
---|
72 | } |
---|
73 | |
---|
74 | protected internal override bool DoMatch(AstNode other, PatternMatching.Match match) |
---|
75 | { |
---|
76 | ArrayCreateExpression o = other as ArrayCreateExpression; |
---|
77 | return o != null && this.Type.DoMatch(o.Type, match) && this.Arguments.DoMatch(o.Arguments, match) && this.AdditionalArraySpecifiers.DoMatch(o.AdditionalArraySpecifiers, match) && this.Initializer.DoMatch(o.Initializer, match); |
---|
78 | } |
---|
79 | } |
---|
80 | } |
---|