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

« back to all changes in this revision

Viewing changes to external/nrefactory/ICSharpCode.NRefactory/TypeSystem/PointerType.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) 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
using ICSharpCode.NRefactory.TypeSystem.Implementation;
 
22
 
 
23
namespace ICSharpCode.NRefactory.TypeSystem
 
24
{
 
25
        public sealed class PointerType : TypeWithElementType
 
26
        {
 
27
                public PointerType(IType elementType) : base(elementType)
 
28
                {
 
29
                }
 
30
                
 
31
                public override TypeKind Kind {
 
32
                        get { return TypeKind.Pointer; }
 
33
                }
 
34
                
 
35
                public override string NameSuffix {
 
36
                        get {
 
37
                                return "*";
 
38
                        }
 
39
                }
 
40
                
 
41
                public override bool? IsReferenceType {
 
42
                        get { return null; }
 
43
                }
 
44
                
 
45
                public override int GetHashCode()
 
46
                {
 
47
                        return elementType.GetHashCode() ^ 91725811;
 
48
                }
 
49
                
 
50
                public override bool Equals(IType other)
 
51
                {
 
52
                        PointerType a = other as PointerType;
 
53
                        return a != null && elementType.Equals(a.elementType);
 
54
                }
 
55
                
 
56
                public override IType AcceptVisitor(TypeVisitor visitor)
 
57
                {
 
58
                        return visitor.VisitPointerType(this);
 
59
                }
 
60
                
 
61
                public override IType VisitChildren(TypeVisitor visitor)
 
62
                {
 
63
                        IType e = elementType.AcceptVisitor(visitor);
 
64
                        if (e == elementType)
 
65
                                return this;
 
66
                        else
 
67
                                return new PointerType(e);
 
68
                }
 
69
                
 
70
                public override ITypeReference ToTypeReference()
 
71
                {
 
72
                        return new PointerTypeReference(elementType.ToTypeReference());
 
73
                }
 
74
        }
 
75
        
 
76
        [Serializable]
 
77
        public sealed class PointerTypeReference : ITypeReference, ISupportsInterning
 
78
        {
 
79
                readonly ITypeReference elementType;
 
80
                
 
81
                public PointerTypeReference(ITypeReference elementType)
 
82
                {
 
83
                        if (elementType == null)
 
84
                                throw new ArgumentNullException("elementType");
 
85
                        this.elementType = elementType;
 
86
                }
 
87
                
 
88
                public ITypeReference ElementType {
 
89
                        get { return elementType; }
 
90
                }
 
91
                
 
92
                public IType Resolve(ITypeResolveContext context)
 
93
                {
 
94
                        return new PointerType(elementType.Resolve(context));
 
95
                }
 
96
                
 
97
                public override string ToString()
 
98
                {
 
99
                        return elementType.ToString() + "*";
 
100
                }
 
101
                
 
102
                int ISupportsInterning.GetHashCodeForInterning()
 
103
                {
 
104
                        return elementType.GetHashCode() ^ 91725812;
 
105
                }
 
106
                
 
107
                bool ISupportsInterning.EqualsForInterning(ISupportsInterning other)
 
108
                {
 
109
                        PointerTypeReference o = other as PointerTypeReference;
 
110
                        return o != null && this.elementType == o.elementType;
 
111
                }
 
112
        }
 
113
}