Browse Source

Move SimpleTypeResolveContext out of Implementation namespace.

newNRvisualizers
Daniel Grunwald 14 years ago
parent
commit
c6d8b93322
  1. 2
      ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj
  2. 2
      ICSharpCode.NRefactory/TypeSystem/IEvent.cs
  3. 2
      ICSharpCode.NRefactory/TypeSystem/IField.cs
  4. 2
      ICSharpCode.NRefactory/TypeSystem/IMember.cs
  5. 2
      ICSharpCode.NRefactory/TypeSystem/IMethod.cs
  6. 2
      ICSharpCode.NRefactory/TypeSystem/IProperty.cs
  7. 2
      ICSharpCode.NRefactory/TypeSystem/ITypeDefinition.cs
  8. 2
      ICSharpCode.NRefactory/TypeSystem/SimpleTypeResolveContext.cs

2
ICSharpCode.NRefactory/ICSharpCode.NRefactory.csproj

@ -168,7 +168,6 @@
<Compile Include="TypeSystem\Implementation\SimpleCompilation.cs" /> <Compile Include="TypeSystem\Implementation\SimpleCompilation.cs" />
<Compile Include="TypeSystem\Implementation\SimpleConstantValue.cs" /> <Compile Include="TypeSystem\Implementation\SimpleConstantValue.cs" />
<Compile Include="TypeSystem\Implementation\SimpleInterningProvider.cs" /> <Compile Include="TypeSystem\Implementation\SimpleInterningProvider.cs" />
<Compile Include="TypeSystem\Implementation\SimpleTypeResolveContext.cs" />
<Compile Include="TypeSystem\Implementation\SpecializedEvent.cs" /> <Compile Include="TypeSystem\Implementation\SpecializedEvent.cs" />
<Compile Include="TypeSystem\Implementation\SpecializedField.cs" /> <Compile Include="TypeSystem\Implementation\SpecializedField.cs" />
<Compile Include="TypeSystem\Implementation\SpecializedMember.cs" /> <Compile Include="TypeSystem\Implementation\SpecializedMember.cs" />
@ -200,6 +199,7 @@
<Compile Include="TypeSystem\ParameterizedType.cs" /> <Compile Include="TypeSystem\ParameterizedType.cs" />
<Compile Include="TypeSystem\ParameterListComparer.cs" /> <Compile Include="TypeSystem\ParameterListComparer.cs" />
<Compile Include="TypeSystem\ReflectionNameParseException.cs" /> <Compile Include="TypeSystem\ReflectionNameParseException.cs" />
<Compile Include="TypeSystem\SimpleTypeResolveContext.cs" />
<Compile Include="TypeSystem\TypeKind.cs" /> <Compile Include="TypeSystem\TypeKind.cs" />
<Compile Include="TypeSystem\TypeVisitor.cs" /> <Compile Include="TypeSystem\TypeVisitor.cs" />
<Compile Include="TypeSystem\IVariable.cs" /> <Compile Include="TypeSystem\IVariable.cs" />

2
ICSharpCode.NRefactory/TypeSystem/IEvent.cs

@ -37,7 +37,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the member. The context must specify the current assembly. /// Context for looking up the member. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved member, or <c>null</c> if the member could not be found. /// Returns the resolved member, or <c>null</c> if the member could not be found.

2
ICSharpCode.NRefactory/TypeSystem/IField.cs

@ -48,7 +48,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the member. The context must specify the current assembly. /// Context for looking up the member. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved member, or <c>null</c> if the member could not be found. /// Returns the resolved member, or <c>null</c> if the member could not be found.

2
ICSharpCode.NRefactory/TypeSystem/IMember.cs

@ -67,7 +67,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the member. The context must specify the current assembly. /// Context for looking up the member. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved member, or <c>null</c> if the member could not be found. /// Returns the resolved member, or <c>null</c> if the member could not be found.

2
ICSharpCode.NRefactory/TypeSystem/IMethod.cs

@ -50,7 +50,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the member. The context must specify the current assembly. /// Context for looking up the member. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved member, or <c>null</c> if the member could not be found. /// Returns the resolved member, or <c>null</c> if the member could not be found.

2
ICSharpCode.NRefactory/TypeSystem/IProperty.cs

@ -38,7 +38,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the member. The context must specify the current assembly. /// Context for looking up the member. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved member, or <c>null</c> if the member could not be found. /// Returns the resolved member, or <c>null</c> if the member could not be found.

2
ICSharpCode.NRefactory/TypeSystem/ITypeDefinition.cs

@ -54,7 +54,7 @@ namespace ICSharpCode.NRefactory.TypeSystem
/// </summary> /// </summary>
/// <param name="context"> /// <param name="context">
/// Context for looking up the type. The context must specify the current assembly. /// Context for looking up the type. The context must specify the current assembly.
/// A <see cref="Implementation.SimpleTypeResolveContext"/> that specifies the current assembly is sufficient. /// A <see cref="SimpleTypeResolveContext"/> that specifies the current assembly is sufficient.
/// </param> /// </param>
/// <returns> /// <returns>
/// Returns the resolved type definition. /// Returns the resolved type definition.

2
ICSharpCode.NRefactory/TypeSystem/Implementation/SimpleTypeResolveContext.cs → ICSharpCode.NRefactory/TypeSystem/SimpleTypeResolveContext.cs

@ -18,7 +18,7 @@
using System; using System;
namespace ICSharpCode.NRefactory.TypeSystem.Implementation namespace ICSharpCode.NRefactory.TypeSystem
{ {
/// <summary> /// <summary>
/// Default ITypeResolveContext implementation. /// Default ITypeResolveContext implementation.
Loading…
Cancel
Save