github.com/nevalang/neva@v0.23.1-0.20240507185603-7696a9bb8dda/internal/compiler/backend/dot/cluster.dot.tmpl (about)

     1  subgraph cluster_{{.Index}} {
     2    label = {{ printf "%q" .Label }};
     3  
     4    {{ range .Nodes -}}
     5    {{ .Format }} [shape = plaintext;label = <{{ template "node.html.tmpl" . }}>;];
     6    {{ end }}
     7  
     8    {{- range .Clusters -}}
     9    {{- template "cluster.dot.tmpl" . -}}
    10    {{- end -}}
    11  }