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.
38 lines
1.1 KiB
38 lines
1.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.Collections.Generic; |
|
using System.Threading; |
|
using Mono.Cecil; |
|
|
|
namespace ICSharpCode.Decompiler |
|
{ |
|
public class DecompilerContext |
|
{ |
|
public ModuleDefinition CurrentModule; |
|
public CancellationToken CancellationToken; |
|
public TypeDefinition CurrentType; |
|
public MethodDefinition CurrentMethod; |
|
public DecompilerSettings Settings = new DecompilerSettings(); |
|
|
|
public DecompilerContext(ModuleDefinition currentModule) |
|
{ |
|
if (currentModule == null) |
|
throw new ArgumentNullException("currentModule"); |
|
this.CurrentModule = currentModule; |
|
} |
|
|
|
/// <summary> |
|
/// Used to pass variable names from a method to its anonymous methods. |
|
/// </summary> |
|
internal List<string> ReservedVariableNames = new List<string>(); |
|
|
|
public DecompilerContext Clone() |
|
{ |
|
DecompilerContext ctx = (DecompilerContext)MemberwiseClone(); |
|
ctx.ReservedVariableNames = new List<string>(ctx.ReservedVariableNames); |
|
return ctx; |
|
} |
|
} |
|
}
|
|
|