public string GetGraph(string source) { var ast = Parser.Util.StringToAst(source); var fg = new FlowGraph(ast); return(fg.ToGraphvizFormat()); }