c2ec1c97c9
A poor man's formatter since I didn't like any of the other ones I found. The original C++ source sometimes put newlines and sometimes not.
Codemods:
codemod '([;{}])([^\n])' '\1\n\2'
codemod -m '\s*<\?php\s+' '<?php\n\n'
codemod '\t' ' '
I hand-fixed all the failing tests
23 linhas
418 B
PHP
23 linhas
418 B
PHP
<?php
|
|
|
|
function test($a) {
|
|
var_dump(current($a));
|
|
while (next($a)) echo '.';
|
|
$a[] = 2;
|
|
$a[] = 3;
|
|
var_dump(current($a));
|
|
var_dump(next($a));
|
|
var_dump(next($a));
|
|
var_dump(current($a));
|
|
$a[17] = 4;
|
|
var_dump(current($a));
|
|
$a[18] = 5;
|
|
var_dump(current($a));
|
|
while(next($a)) echo '.';
|
|
var_dump(current($a));
|
|
$a[1] = 5;
|
|
var_dump(current($a));
|
|
}
|
|
test(array(1));
|
|
test(array(1,2,3,4,5,6,7,8,9));
|