class SyntaxTree::Mermaid::FlowChart

def initialize

def initialize
  @output = StringIO.new
  @output.puts("flowchart TD")
  @prefix = "  "
  @nodes = {}
  @links = []
end