-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathast.dot
36 lines (36 loc) · 1.75 KB
/
ast.dot
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
34
35
36
digraph AST {
node[fontname = "helvetica"]
2386125315 [shape=box, label="Seq", fillcolor="#e3f2fd", style=filled]
3237521130 [shape=box, label="Assign", fillcolor="#e3f2fd", style=filled]
2205394483 [shape=box, label="Id\nvar: i", fillcolor="#f1f8e9", style=filled]
3237521130 -> 2205394483
3973559984 [shape=box, label="Const\nval: 0", fillcolor="#f1f8e9", style=filled]
3237521130 -> 3973559984
2386125315 -> 3237521130
1622855685 [shape=box, label="Seq", fillcolor="#e3f2fd", style=filled]
1855255618 [shape=box, label="While", fillcolor="#e3f2fd", style=filled]
3910780423 [shape=box, label="Rel\nop: <", fillcolor="#e3f2fd", style=filled]
1126219100 [shape=box, label="Id\nvar: i", fillcolor="#f1f8e9", style=filled]
3910780423 -> 1126219100
4226975706 [shape=box, label="Const\nval: 100", fillcolor="#f1f8e9", style=filled]
3910780423 -> 4226975706
1855255618 -> 3910780423
713247860 [shape=box, label="Seq", fillcolor="#e3f2fd", style=filled]
3574372218 [shape=box, label="Assign", fillcolor="#e3f2fd", style=filled]
2018798217 [shape=box, label="Id\nvar: i", fillcolor="#f1f8e9", style=filled]
3574372218 -> 2018798217
1171584 [shape=box, label="Arith\nop: +", fillcolor="#e3f2fd", style=filled]
2095620336 [shape=box, label="Id\nvar: i", fillcolor="#f1f8e9", style=filled]
1171584 -> 2095620336
2217581471 [shape=box, label="Const\nval: 1", fillcolor="#f1f8e9", style=filled]
1171584 -> 2217581471
3574372218 -> 1171584
713247860 -> 3574372218
2765307806 [shape=box, label="Empty", fillcolor="#eceff1", style=filled]
713247860 -> 2765307806
1855255618 -> 713247860
1622855685 -> 1855255618
2765307956 [shape=box, label="Empty", fillcolor="#eceff1", style=filled]
1622855685 -> 2765307956
2386125315 -> 1622855685
}