~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory.VB/Ast/TypeName/QualifiedType.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
Import upstream version 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
 
2
// This code is distributed under MIT X11 license (for details please see \doc\license.txt)
 
3
 
 
4
using System;
 
5
using System.Linq;
 
6
using System.Text;
 
7
 
 
8
namespace ICSharpCode.NRefactory.VB.Ast
 
9
{
 
10
        /// <summary>
 
11
        /// Description of QualifiedType.
 
12
        /// </summary>
 
13
        public class QualifiedType : AstType
 
14
        {
 
15
                public static readonly Role<AstType> TargetRole = new Role<AstType>("Target", AstType.Null);
 
16
                
 
17
                public AstType Target {
 
18
                        get { return GetChildByRole(TargetRole); }
 
19
                        set { SetChildByRole(TargetRole, value); }
 
20
                }
 
21
                
 
22
                public string Name {
 
23
                        get {
 
24
                                return GetChildByRole (Roles.Identifier).Name;
 
25
                        }
 
26
                        set {
 
27
                                SetChildByRole (Roles.Identifier, new Identifier (value, TextLocation.Empty));
 
28
                        }
 
29
                }
 
30
                
 
31
                public QualifiedType(AstType target, Identifier name)
 
32
                {
 
33
                        Target = target;
 
34
                        SetChildByRole(Roles.Identifier, name);
 
35
                }
 
36
                
 
37
                public AstNodeCollection<AstType> TypeArguments {
 
38
                        get { return GetChildrenByRole (Roles.TypeArgument); }
 
39
                }
 
40
                
 
41
                public override S AcceptVisitor<T, S> (IAstVisitor<T, S> visitor, T data)
 
42
                {
 
43
                        return visitor.VisitQualifiedType(this, data);
 
44
                }
 
45
                
 
46
                protected internal override bool DoMatch(AstNode other, PatternMatching.Match match)
 
47
                {
 
48
                        var o = other as QualifiedType;
 
49
                        return o != null && MatchString(this.Name, o.Name) && this.Target.DoMatch(o.Target, match);
 
50
                }
 
51
                
 
52
                public override string ToString()
 
53
                {
 
54
                        StringBuilder b = new StringBuilder();
 
55
                        b.Append(this.Target);
 
56
                        b.Append('.');
 
57
                        b.Append(this.Name);
 
58
                        if (this.TypeArguments.Any()) {
 
59
                                b.Append('(');
 
60
                                b.Append(string.Join(", ", this.TypeArguments));
 
61
                                b.Append(')');
 
62
                        }
 
63
                        return b.ToString();
 
64
                }
 
65
        }
 
66
}