diff options
Diffstat (limited to 'test-files/mds-kbdc/eliminate-dead-code/alive-code')
-rw-r--r-- | test-files/mds-kbdc/eliminate-dead-code/alive-code/for-function-return-end-alive | 25 | ||||
-rw-r--r-- | test-files/mds-kbdc/eliminate-dead-code/alive-code/for-macro-return-end-alive | 25 |
2 files changed, 50 insertions, 0 deletions
diff --git a/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-function-return-end-alive b/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-function-return-end-alive new file mode 100644 index 0000000..7a02539 --- /dev/null +++ b/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-function-return-end-alive @@ -0,0 +1,25 @@ +for 1 to 2 as \1 + function f/0 + return + end function + <alive> : "code" +end for + +# (for (@ 1 0-3) ‘1’ ‘2’ (.variable ‘\1’) +# (.inner +# (function (@ 2 2-10) ‘f/0’ +# (.inner +# (return (@ 3 4-10)) +# ) +# ) +# (map (@ 5 2-18) +# (.sequence +# (keys (@ 5 2-9) ‘<alive>’) +# ) +# (.result +# (string (@ 5 12-18) ‘"code"’) +# ) +# ) +# ) +# ) + diff --git a/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-macro-return-end-alive b/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-macro-return-end-alive new file mode 100644 index 0000000..516e622 --- /dev/null +++ b/test-files/mds-kbdc/eliminate-dead-code/alive-code/for-macro-return-end-alive @@ -0,0 +1,25 @@ +for 1 to 2 as \1 + macro m/0 + return + end macro + <alive> : "code" +end for + +# (for (@ 1 0-3) ‘1’ ‘2’ (.variable ‘\1’) +# (.inner +# (macro (@ 2 2-7) ‘m/0’ +# (.inner +# (return (@ 3 4-10)) +# ) +# ) +# (map (@ 5 2-18) +# (.sequence +# (keys (@ 5 2-9) ‘<alive>’) +# ) +# (.result +# (string (@ 5 12-18) ‘"code"’) +# ) +# ) +# ) +# ) + |