コード例 #1
0
ファイル: IFieldWrapper.cs プロジェクト: Etny/RedmondCompiler
 public InterFieldWrapper(InterField field)
 {
     _field = field;
 }
コード例 #2
0
ファイル: IFieldWrapper.cs プロジェクト: Etny/RedmondCompiler
        public GenericInterFieldWrapper(InterField field, InterGenericType type) : base(field)
        {
            _type = type;

            _fieldType = _type.InstantiateGenericType(field.Type);
        }
コード例 #3
0
ファイル: InterType.cs プロジェクト: Etny/RedmondCompiler
 public void AddField(InterField field)
 => Fields = Fields.Add(field);