public CecilEmitter(IXamlIlTypeSystem typeSystem, MethodDefinition method) { _method = method; _body = method.Body; TypeSystem = typeSystem; LocalsPool = new XamlIlLocalsPool(this); }
public IlGen(SreTypeSystem system, ILGenerator ilg) { TypeSystem = system; _ilg = ilg; LocalsPool = new XamlIlLocalsPool(this); }
public PooledLocal(XamlIlLocalsPool parent, IXamlIlType type, IXamlIlLocal local) { Local = local; _parent = parent; _type = type; }