Example #1
0
        public CilinObject(InterpretedType objectType)
        {
            if (objectType.IsAbstract || objectType.IsInterface)
            {
                throw new ArgumentException($"{nameof(CilinObject)} must have a concrete type (provided {objectType})", nameof(objectType));
            }

            ObjectType = objectType;
        }
Example #2
0
 public StaticData(InterpretedType owner)
 {
     _owner = owner;
 }