f04.dot-expected.dot 208 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
digraph block {
    N0[label="entry"];
    N1[label="exit"];
    N2[label="expr 4"];
    N3[label="local _x"];
    N4[label="block { let _x = 4; }"];
    N0 -> N2;
    N2 -> N3;
    N3 -> N4;
    N4 -> N1;
}