forked from PhamAlexT/Compilateur-MiniC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnalyseurSyntaxique.dot
More file actions
42 lines (41 loc) · 1.13 KB
/
AnalyseurSyntaxique.dot
File metadata and controls
42 lines (41 loc) · 1.13 KB
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
37
38
39
40
41
42
digraph G {
node [shape=box];
ratio = fill;
nt0 [ label="prog'" ] ;
nt1 [ label="separated_nonempty_list(COMMA,param)" ] ;
nt2 [ label="separated_nonempty_list(COMMA,expr)" ] ;
nt3 [ label="prog" ] ;
nt4 [ label="param" ] ;
nt5 [ label="loption(separated_nonempty_list(COMMA,param))" ] ;
nt6 [ label="loption(separated_nonempty_list(COMMA,expr))" ] ;
nt7 [ label="list(instr)" ] ;
nt8 [ label="list(fun_def)" ] ;
nt9 [ label="instr" ] ;
nt10 [ label="globals" ] ;
nt11 [ label="global" ] ;
nt12 [ label="fun_def" ] ;
nt13 [ label="expr" ] ;
nt0 -> nt3 [ label="" ] ;
nt1 -> nt1 [ label="" ] ;
nt1 -> nt4 [ label="" ] ;
nt2 -> nt2 [ label="" ] ;
nt2 -> nt13 [ label="" ] ;
nt3 -> nt8 [ label="" ] ;
nt3 -> nt10 [ label="" ] ;
nt5 -> nt1 [ label="" ] ;
nt6 -> nt2 [ label="" ] ;
nt7 -> nt7 [ label="" ] ;
nt7 -> nt9 [ label="" ] ;
nt8 -> nt8 [ label="" ] ;
nt8 -> nt12 [ label="" ] ;
nt9 -> nt7 [ label="" ] ;
nt9 -> nt13 [ label="" ] ;
nt10 -> nt10 [ label="" ] ;
nt10 -> nt11 [ label="" ] ;
nt11 -> nt13 [ label="" ] ;
nt12 -> nt5 [ label="" ] ;
nt12 -> nt7 [ label="" ] ;
nt12 -> nt10 [ label="" ] ;
nt13 -> nt6 [ label="" ] ;
nt13 -> nt13 [ label="" ] ;
}