Ejemplo n.º 1
0
        public string GetGraph(string source)
        {
            var ast = Parser.Util.StringToAst(source);
            var fg  = new FlowGraph(ast);

            return(fg.ToGraphvizFormat());
        }