Microsoft.Cci.MutableCodeModel.ClosureFinder.ClosureFinder C# (CSharp) Method

ClosureFinder() private method

private ClosureFinder ( IMethodDefinition method, IMetadataHost host ) : Microsoft.Cci.MutableCodeModel
method IMethodDefinition
host IMetadataHost
return Microsoft.Cci.MutableCodeModel
    internal ClosureFinder(IMethodDefinition method, IMetadataHost host) {
      this.method = method;
      this.fieldForCapturedLocalOrParameter = new Dictionary<object, BoundField>();
      this.host = host;
      this.nameTable = host.NameTable;
      this.counter = 0;
      this.classList.Add((INamedTypeDefinition)method.ContainingTypeDefinition);
    }