~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Core/MonoDevelop.Projects.Dom.Parser/ProjectDomDecorator.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
                        return decorated.ResolveType (type);
101
101
                }
102
102
                
103
 
                public override IType SearchType (ICompilationUnit unit, IType callingClass, IMember callingMember, string decoratedFullName)
104
 
                {
105
 
                        return decorated.SearchType (unit, callingClass, callingMember, decoratedFullName);
106
 
                }
107
 
                
108
 
                public override IType SearchType (INode searchIn, string decoratedFullName)
109
 
                {
110
 
                        return decorated.SearchType (searchIn, decoratedFullName);
111
 
                }
112
 
                
113
 
                public override IType SearchType (ICompilationUnit unit, IType callingClass, IMember callingMember, IReturnType returnType)
114
 
                {
115
 
                        return decorated.SearchType (unit, callingClass, callingMember, returnType);
116
 
                }
117
 
                
118
 
                public override IType SearchType (INode searchIn, IReturnType returnType)
119
 
                {
120
 
                        return decorated.SearchType (searchIn, returnType);
 
103
                public override IType SearchType (ICompilationUnit unit, IType callingClass, DomLocation lookupLocation, string decoratedFullName)
 
104
                {
 
105
                        return decorated.SearchType (unit, callingClass, lookupLocation, decoratedFullName);
 
106
                }
 
107
                
 
108
                public override IType SearchType (ICompilationUnit unit, IType callingClass, DomLocation lookupLocation, IReturnType returnType)
 
109
                {
 
110
                        return decorated.SearchType (unit, callingClass, lookupLocation, returnType);
121
111
                }
122
112
                
123
113
                public override List<IMember> GetNamespaceContents (string subNamespace, bool includeReferences, bool caseSensitive)
165
155
                        return decorated.GetType (typeName, genericArgumentsCount, deepSearchReferences, caseSensitive);
166
156
                }
167
157
                
168
 
                public override TypeUpdateInformation UpdateFromParseInfo (ICompilationUnit unit)
 
158
                public override TypeUpdateInformation UpdateFromParseInfo (ICompilationUnit unit, bool isFromFile)
169
159
                {
170
 
                        return decorated.UpdateFromParseInfo (unit);
 
160
                        return decorated.UpdateFromParseInfo (unit, isFromFile);
171
161
                }
172
162
                
173
163
                public override IType CreateInstantiatedGenericType (IType type, IList<IReturnType> genericArguments)