Beispiel #1
0
        public void Visit(AST.FieldTypes.InlineObject io)
        {
            StructureBuilder structureBuilder = new StructureBuilder(this.Elements);

            Debug.Assert(!this.Elements.ContainsKey(FieldName), "Crap, we already have a type that has the same name as the field that uses this anonimous type. Typenames should be unique");

            var name = FieldName + "_structurue";

            structureBuilder.BuildStructure(io, name);
            structureBuilder.PopulateStructure(io, name);
            Debug.Assert(this.Elements.ContainsKey(name));
            translated_type = this.Elements[name];
            CheckIfCollection();
        }
Beispiel #2
0
 private void VisitElement(AST.Object o)
 {
     structureBuilder.PopulateStructure(o);
 }