예제 #1
0
파일: Type.cs 프로젝트: tytouf/cilc
        public Type(TypeReference tr, Module mod)
        {
            _module  = mod;
            _cilType = tr;
            _llType  = null;

            _emitted = _isValueType = _isClass = false;
            _fieldsOffsets = new Dictionary<FieldDefinition, uint>();
        }
예제 #2
0
파일: Method.cs 프로젝트: tytouf/cilc
 public Method(MethodReference method, Module module)
 {
     _method = method;
     _module = module;
     GetLlvmType();
 }