Arquivos
hhvm/hphp/test/slow/code_coverage/hhas_coverage.php
T
mwilliams db29a1127c Disable code coverage for systemlib.hhas
It has no line number information.
2013-07-02 11:46:28 -07:00

10 linhas
142 B
PHP

<?php
function test($a) {
fb_enable_code_coverage();
var_dump(array_map(null, $a));
fb_disable_code_coverage();
}
test(array(1,2,3));