Hyena.Query.QueryListNode.Dump C# (CSharp) Méthode

Dump() private méthode

private Dump ( int depth ) : void
depth int
Résultat void
        internal override void Dump(int depth)
        {
            PrintIndent(depth);
            Console.WriteLine("<{0}>", Keyword);

            foreach(QueryNode child in children) {
                child.Dump(depth + 1);
            }

            PrintIndent(depth);
            Console.WriteLine("</{0}>", Keyword);
        }