public void Parse(ICompilateur comp, System.Xml.XmlNode node)
 {
     if (node.Attributes.GetNamedItem("indent") != null)
     {
         Int32.TryParse(node.Attributes.GetNamedItem("indent").Value, out this.indent);
     }
     comp.Parse(comp, node.SelectSingleNode("code"));
 }