static internal Descendant3 Create(uint position) { var result = new Descendant3(); Populate(result, position); return(result); }
public static string Dump(Descendant3 value) { var assistant = new AssistantDumper(); Dump(assistant, value); return(assistant.ToString()); }
static internal void Dump(AssistantDumper assistant, Descendant3 value, bool withSeparator = false) { assistant.IncrementDepth(); if (assistant.MaximumDepthExceeded()) { return; } assistant.AddStartObject(); assistant.AddType("CSharpRefImpl.CSharpModel.Descendant3", true /*withSeparator*/); if (value == null) { assistant.Add("data", "<null>"); assistant.AddEndObject(); return; } assistant.AddKey("data"); assistant.AddPairSeparator(); assistant.AddStartObject(); assistant.AddKey("__parent_0__"); assistant.AddPairSeparator(); CSharpRefImpl.CSharpModel.Descendant1Dumper.Dump(assistant, value, true /*withSeparator*/); assistant.Add("Prop0", value.Prop0); assistant.AddEndObject(); // data assistant.AddEndObject(); // main object assistant.HandleMemberSeparator(withSeparator); assistant.DecrementDepth(); }
static internal void Populate(Descendant3 value, uint position) { CSharpRefImpl.CSharpModel.Descendant1SequenceGenerator.Populate(value, position); value.Prop0 = AssistantSequenceGenerator.CreateBool(position + 0); }