Esempio n. 1
0
        public bool VisitNode(DefaultPropertiesBlock node)
        {
            Write("defaultproperties");
            Write("{0}", "{");
            NestingLevel++;
            foreach (Statement s in node.Statements)
            {
                s.AcceptVisitor(this);
            }
            NestingLevel--;
            Write("{0}", "}");

            return(true);
        }
Esempio n. 2
0
        public bool VisitNode(DefaultPropertiesBlock node)
        {
            Write(node.Outer is Struct ? STRUCTDEFAULTPROPERTIES : DEFAULTPROPERTIES);
            Write("{");
            NestingLevel++;
            foreach (Statement s in node.Statements)
            {
                s.AcceptVisitor(this);
            }
            NestingLevel--;
            Write("}");

            return(true);
        }
Esempio n. 3
0
 public bool VisitNode(DefaultPropertiesBlock node)
 {
     throw new NotImplementedException();
 }