Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CodeEditor/HeuristicLab.ExtLibs/HeuristicLab.NRefactory/5.5.0/NRefactory.CSharp-5.5.0/Ast/TypeMembers/MethodDeclaration.cs @ 11700

Last change on this file since 11700 was 11700, checked in by jkarder, 9 years ago

#2077: created branch and added first version

File size: 3.6 KB
Line 
1//
2// MethodDeclaration.cs
3//
4// Author:
5//       Mike Krüger <mkrueger@novell.com>
6//
7// Copyright (c) 2009 Novell, Inc (http://www.novell.com)
8//
9// Permission is hereby granted, free of charge, to any person obtaining a copy
10// of this software and associated documentation files (the "Software"), to deal
11// in the Software without restriction, including without limitation the rights
12// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13// copies of the Software, and to permit persons to whom the Software is
14// furnished to do so, subject to the following conditions:
15//
16// The above copyright notice and this permission notice shall be included in
17// all copies or substantial portions of the Software.
18//
19// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25// THE SOFTWARE.
26
27using ICSharpCode.NRefactory.TypeSystem;
28
29namespace ICSharpCode.NRefactory.CSharp
30{
31  public class MethodDeclaration : EntityDeclaration
32  {
33    public override SymbolKind SymbolKind {
34      get { return SymbolKind.Method; }
35    }
36   
37    /// <summary>
38    /// Gets/Sets the type reference of the interface that is explicitly implemented.
39    /// Null node if this member is not an explicit interface implementation.
40    /// </summary>
41    public AstType PrivateImplementationType {
42      get { return GetChildByRole (PrivateImplementationTypeRole); }
43      set { SetChildByRole (PrivateImplementationTypeRole, value); }
44    }
45   
46    public AstNodeCollection<TypeParameterDeclaration> TypeParameters {
47      get { return GetChildrenByRole (Roles.TypeParameter); }
48    }
49   
50    public CSharpTokenNode LParToken {
51      get { return GetChildByRole (Roles.LPar); }
52    }
53   
54    public AstNodeCollection<ParameterDeclaration> Parameters {
55      get { return GetChildrenByRole (Roles.Parameter); }
56    }
57   
58    public CSharpTokenNode RParToken {
59      get { return GetChildByRole (Roles.RPar); }
60    }
61   
62    public AstNodeCollection<Constraint> Constraints {
63      get { return GetChildrenByRole (Roles.Constraint); }
64    }
65   
66    public BlockStatement Body {
67      get { return GetChildByRole (Roles.Body); }
68      set { SetChildByRole (Roles.Body, value); }
69    }
70   
71    public bool IsExtensionMethod {
72      get {
73        ParameterDeclaration pd = (ParameterDeclaration)GetChildByRole (Roles.Parameter);
74        return pd != null && pd.ParameterModifier == ParameterModifier.This;
75      }
76    }
77   
78    public override void AcceptVisitor (IAstVisitor visitor)
79    {
80      visitor.VisitMethodDeclaration (this);
81    }
82   
83    public override T AcceptVisitor<T> (IAstVisitor<T> visitor)
84    {
85      return visitor.VisitMethodDeclaration (this);
86    }
87   
88    public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
89    {
90      return visitor.VisitMethodDeclaration (this, data);
91    }
92   
93    protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
94    {
95      MethodDeclaration o = other as MethodDeclaration;
96      return o != null && MatchString(this.Name, o.Name)
97        && this.MatchAttributesAndModifiers(o, match) && this.ReturnType.DoMatch(o.ReturnType, match)
98        && this.PrivateImplementationType.DoMatch(o.PrivateImplementationType, match)
99        && this.TypeParameters.DoMatch(o.TypeParameters, match)
100        && this.Parameters.DoMatch(o.Parameters, match) && this.Constraints.DoMatch(o.Constraints, match)
101        && this.Body.DoMatch(o.Body, match);
102    }
103  }
104}
Note: See TracBrowser for help on using the repository browser.