astrXbian/www/multitube/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/switch.test

37 lines
686 B
Plaintext
Raw Normal View History

2021-03-20 01:33:02 +01:00
switch/case/default
-----
<?php
switch ($expr) {
case 0:
echo 'First case, with a break';
break;
case 1:
echo 'Second case, which falls through';
case 2:
case 3:
case 4:
echo 'Third case, return instead of break';
return;
// Comment
default:
echo 'Default case';
break;
}
-----
switch ($expr) {
case 0:
echo 'First case, with a break';
break;
case 1:
echo 'Second case, which falls through';
case 2:
case 3:
case 4:
echo 'Third case, return instead of break';
return;
// Comment
default:
echo 'Default case';
break;
}