Пример #1
0
        public Type(TypeReference tr, Module mod)
        {
            _module  = mod;
            _cilType = tr;
            _llType  = null;

            _emitted = _isValueType = _isClass = false;
            _fieldsOffsets = new Dictionary<FieldDefinition, uint>();
        }
Пример #2
0
 public Method(MethodReference method, Module module)
 {
     _method = method;
     _module = module;
     GetLlvmType();
 }