diff --git a/test/code/prettyPrinter/continue.test b/test/code/prettyPrinter/continue.test new file mode 100644 index 00000000..19a1ca6f --- /dev/null +++ b/test/code/prettyPrinter/continue.test @@ -0,0 +1,9 @@ +continue +----- + $val) { + +} + +foreach ($arr as $key => &$val) { + +} +----- +foreach ($arr as $val) { +} +foreach ($arr as &$val) { +} +foreach ($arr as $key => $val) { +} +foreach ($arr as $key => &$val) { +} \ No newline at end of file diff --git a/test/code/prettyPrinter/goto.test b/test/code/prettyPrinter/goto.test new file mode 100644 index 00000000..a3e158a3 --- /dev/null +++ b/test/code/prettyPrinter/goto.test @@ -0,0 +1,7 @@ +goto +----- +