summary refs log tree commit diff
path: root/src/test/run-make/graphviz-flowgraph/f07.dot-expected.dot
blob: c99af1791495ff7605fd23eff22f8070e5aabc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 7"];
    N3[label="expr 77"];
    N4[label="expr 777"];
    N5[label="expr 7777"];
    N6[label="expr [7, 77, 777, 7777]"];
    N7[label="expr match [7, 77, 777, 7777] { [x, y, ..] => x + y }"];
    N8[label="local x"];
    N9[label="local y"];
    N10[label="pat .."];
    N11[label="pat [x, y, ..]"];
    N12[label="expr x"];
    N13[label="expr y"];
    N14[label="expr x + y"];
    N15[label="block { match [7, 77, 777, 7777] { [x, y, ..] => x + y }; }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N5;
    N5 -> N6;
    N6 -> N8;
    N8 -> N9;
    N9 -> N10;
    N10 -> N11;
    N11 -> N12;
    N12 -> N13;
    N13 -> N14;
    N14 -> N7;
    N7 -> N15;
    N15 -> N1;
}