Exemple #1
0
        public override string ToString()
        {
            if (Query == null)
            {
                return("root");
            }

            return("Q: " + Query.ToString());
        }
Exemple #2
0
        internal static void QueryPush(SemanticItem item)
        {
            if (!PrintDatabaseInfo)
            {
                return;
            }

            Writeln("QUERY: " + item.ToString(), HeadlineColor);
            _currentIndentation += 1;
        }