diff --git a/corpus/while.txt b/corpus/while.txt new file mode 100644 index 0000000..bc0c61f --- /dev/null +++ b/corpus/while.txt @@ -0,0 +1,41 @@ +=================== +Empty while [while] +=================== + +while(cond) +endwhile() + +--- + +(source_file + (while_loop + (while_command + (while) + (argument (unquoted_argument)) + ) + (endwhile_command (endwhile)) + ) +) + +============================================ +Empty while with argument in endwhile[while] +============================================ + +while(cond) +endwhile(cond) + +--- + +(source_file + (while_loop + (while_command + (while) + (argument (unquoted_argument)) + ) + (endwhile_command + (endwhile) + (argument (unquoted_argument)) + ) + ) +) +