Exemplo n.º 1
0
        private string GetNodeString( AST pNode )
        {
			string result;
			result = /*pNode.getTokenType().ToString() + " : " + */ pNode.ToString();
			if(_printExecutions) {
				result += " : " + pNode.Executions;
			}
            return result;
        }
Exemplo n.º 2
0
        private string GetNodeString(AST pNode)
        {
            string result;

            result = pNode.getTokenType().ToString() + " : " + pNode.ToString();
            if (_printExecutions)
            {
                result += " : " + pNode.Executions;
            }
            return(result);
        }