protected internal override CapnpStruct VisitStruct(CapnpStruct @struct) { if (@struct.Id == null) { // Note that TopScope is the parent scope here (i.e. not yet the current struct) @struct.Id = _GenerateId(@struct); } return(base.VisitStruct(@struct)); }
protected internal virtual CapnpStruct VisitStruct(CapnpStruct @struct) { if (!mEnableNestedType) { return(@struct); } @struct.Structs = @struct.Structs.Select(s => VisitStruct(s)).ToArray(); @struct.Interfaces = @struct.Interfaces.Select(i => VisitInterface(i)).ToArray(); DisableNestedType(); @struct.Enumerations = @struct.Enumerations.Select(e => VisitEnum(e)).ToArray(); @struct.Fields = @struct.Fields.Select(f => VisitField(f)).ToArray(); @struct.AnnotationDefs = @struct.AnnotationDefs.Select(ad => VisitAnnotationDecl(ad)).ToArray(); @struct.Annotations = @struct.Annotations.Select(a => VisitAnnotation(a)).ToArray(); @struct.Usings = @struct.Usings.Select(u => VisitUsing(u)).ToArray(); @struct.Constants = @struct.Constants.Select(c => VisitConst(c)).ToArray(); EnableNestedType(); return(@struct); }
public StructValue(CapnpStruct type) : base(type) { }
protected internal override CapnpStruct VisitStruct(CapnpStruct @struct) { _ValidateAnnotations(@struct.Annotations, AnnotationTypes.@struct); _ValidateHaveId(@struct); return(base.VisitStruct(@struct)); }