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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
[
{
"kind": "on_function",
"name": "on_a",
"arguments": [],
"body_statements": [
{
"kind": "variable",
"name": "i",
"type": "number",
"assignment_expr": {
"type": "number",
"value": 0,
"string": "0"
}
},
{
"kind": "empty_line"
},
{
"kind": "while",
"cond": {
"type": "boolean",
"value": "true"
},
"statements": [
{
"kind": "call",
"expr": {
"type": "call",
"function_name": "nothing",
"arguments": []
}
},
{
"kind": "while",
"cond": {
"type": "binary",
"operator": "!=",
"left": {
"type": "identifier",
"value": "i"
},
"right": {
"type": "number",
"value": 2,
"string": "2"
}
},
"statements": [
{
"name": "i",
"kind": "variable",
"assignment_expr": {
"type": "binary",
"operator": "+",
"left": {
"type": "identifier",
"value": "i"
},
"right": {
"type": "number",
"value": 1,
"string": "1"
}
}
},
{
"kind": "if",
"cond": {
"type": "parenthesized",
"expr": {
"type": "binary",
"operator": "==",
"left": {
"type": "identifier",
"value": "i"
},
"right": {
"type": "number",
"value": 1,
"string": "1"
}
}
},
"if_block": [
{
"kind": "continue"
}
]
},
{
"kind": "call",
"expr": {
"type": "call",
"function_name": "nothing",
"arguments": []
}
}
]
},
{
"kind": "break"
}
]
}
]
}
]