mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
69 lines
2.1 KiB
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt) |
|
// This code is distributed under MIT X11 license (for details please see \doc\license.txt) |
|
|
|
using System; |
|
using System.Diagnostics; |
|
using ICSharpCode.NRefactory.CSharp; |
|
using Mono.Cecil; |
|
|
|
namespace Decompiler.Transforms |
|
{ |
|
/// <summary> |
|
/// Base class for AST visitors that need the current type/method context info. |
|
/// </summary> |
|
public abstract class ContextTrackingVisitor : DepthFirstAstVisitor<object, object> |
|
{ |
|
protected readonly DecompilerContext context; |
|
|
|
protected ContextTrackingVisitor(DecompilerContext context) |
|
{ |
|
if (context == null) |
|
throw new ArgumentNullException("context"); |
|
this.context = context; |
|
} |
|
|
|
public override object VisitTypeDeclaration(TypeDeclaration typeDeclaration, object data) |
|
{ |
|
TypeDefinition oldType = context.CurrentType; |
|
try { |
|
context.CurrentType = typeDeclaration.Annotation<TypeDefinition>(); |
|
return base.VisitTypeDeclaration(typeDeclaration, data); |
|
} finally { |
|
context.CurrentType = oldType; |
|
} |
|
} |
|
|
|
public override object VisitMethodDeclaration(MethodDeclaration methodDeclaration, object data) |
|
{ |
|
Debug.Assert(context.CurrentMethod == null); |
|
try { |
|
context.CurrentMethod = methodDeclaration.Annotation<MethodDefinition>(); |
|
return base.VisitMethodDeclaration(methodDeclaration, data); |
|
} finally { |
|
context.CurrentMethod = null; |
|
} |
|
} |
|
|
|
public override object VisitConstructorDeclaration(ConstructorDeclaration constructorDeclaration, object data) |
|
{ |
|
Debug.Assert(context.CurrentMethod == null); |
|
try { |
|
context.CurrentMethod = constructorDeclaration.Annotation<MethodDefinition>(); |
|
return base.VisitConstructorDeclaration(constructorDeclaration, data); |
|
} finally { |
|
context.CurrentMethod = null; |
|
} |
|
} |
|
|
|
public override object VisitAccessor(Accessor accessor, object data) |
|
{ |
|
Debug.Assert(context.CurrentMethod == null); |
|
try { |
|
context.CurrentMethod = accessor.Annotation<MethodDefinition>(); |
|
return base.VisitAccessor(accessor, data); |
|
} finally { |
|
context.CurrentMethod = null; |
|
} |
|
} |
|
} |
|
}
|
|
|