示例#1
0
        public static HLLocalAddressLocation Create(HLLocal pLocal)
        {
            HLLocalAddressLocation location = new HLLocalAddressLocation(HLDomain.GetOrCreateType(MutableModelHelper.GetManagedPointerTypeReference(pLocal.Type.Definition, HLDomain.Host.InternFactory, pLocal.Type.Definition)));

            location.mLocal = pLocal;
            return(location);
        }
 public static HLLocalAddressLocation Create(HLLocal pLocal)
 {
     HLLocalAddressLocation location = new HLLocalAddressLocation(HLDomain.GetOrCreateType(MutableModelHelper.GetManagedPointerTypeReference(pLocal.Type.Definition, HLDomain.Host.InternFactory, pLocal.Type.Definition)));
     location.mLocal = pLocal;
     return location;
 }
示例#3
0
 internal override HLLocation AddressOf()
 {
     return(HLLocalAddressLocation.Create(mLocal));
 }