-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathtest_ifreturn_issue.xml
More file actions
38 lines (38 loc) · 1.15 KB
/
test_ifreturn_issue.xml
File metadata and controls
38 lines (38 loc) · 1.15 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
<xml xmlns="http://www.w3.org/1999/xhtml">
<block type="procedures_defreturn">
<field name="NAME">test_function</field>
<statement name="STACK">
<!-- procedures_ifreturn inside an if statement -->
<block type="controls_if">
<value name="IF0">
<block type="logic_boolean">
<field name="BOOL">TRUE</field>
</block>
</value>
<statement name="DO0">
<block type="procedures_ifreturn">
<mutation value="1"></mutation>
<value name="CONDITION">
<block type="logic_boolean">
<field name="BOOL">TRUE</field>
</block>
</value>
<value name="VALUE">
<block type="text">
<field name="TEXT">should return this</field>
</block>
</value>
</block>
</statement>
</block>
</statement>
<value name="RETURN">
<block type="text">
<field name="TEXT">should not reach here</field>
</block>
</value>
</block>
<block type="procedures_callreturn">
<mutation name="test_function"></mutation>
</block>
</xml>