Beispiel #1
0
        public void CompileParentConstructorCall(ParentConstructorCall pcc)
        {
            XmlElement previousElement = currentElement;
            XmlElement tmpElement      = document.CreateElement("ParentConstructorCall");

            currentElement = document.CreateElement("Arguments");
            foreach (Expression argument in pcc.Arguments)
            {
                argument.AcceptCompiler(this);
            }
            tmpElement.AppendChild(currentElement);

            previousElement.AppendChild(tmpElement);
            currentElement = previousElement;
        }
Beispiel #2
0
 public void CompileParentConstructorCall(ParentConstructorCall pcc)
 {
     textWriter.Write(" : super");
     DumpExpressionsList(pcc.Arguments);
 }