-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest
More file actions
37 lines (37 loc) · 728 Bytes
/
Copy pathtest
File metadata and controls
37 lines (37 loc) · 728 Bytes
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
digraph G {
node[shape=box, style=rounded, fontname="Sans"]
0 [label = Function];
0 -> 1;
1 [label = Block];
1 -> 2;
2 [label = "Expression
variable0 = integer
variable0 = integer
variable1 = decimal"];
2 -> 3;
3 [label = "LoopVariable
variable2 = integer"];
3 -> 4;
4 [label = "LoopCondition
variable2 <= integer", shape = diamond];
4 -> 5 [label = "true", fontcolor="blue"];
4 -> 8 [label = "false", fontcolor="red"];
5 [label = Block];
5 -> 6;
6 [label = "Expression
variable0 += variable2"];
6 -> 7;
7 [label = "LoopExpression
variable2++"];
7 -> 4;
8 [label = ForEnd];
8 -> 9;
{rank=same; 8; 7}
9 [label = "Expression
variable0 = integer"];
9 -> 10;
10 [label = "return
variable0"];
10 -> 11;
11 [label = FunctionEnd];
}