/// <summary>
 /// Write a type as capnp text
 /// </summary>
 /// <param name="type"></param>
 /// <param name="codeOrder"></param>
 protected void Write(EsiStruct st, ushort codeOrder)
 {
     // Use the traverse method to do the recursion
     st.Traverse(
         pre: o => TypeWriteTraversePre(o, ref codeOrder),
         post: TypeWriteTraversePost
         );
     Debug.Assert(indent == 0);
 }
Esempio n. 2
0
 public EsiReferenceCapnp(EsiStruct Reference) : base(Reference)
 {
 }