Hyena.Query.QueryListNode.Dump C# (CSharp) Method

Dump() private method

private Dump ( int depth ) : void
depth int
return 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);
        }