Arquivos
hhvm/hphp/test/quick/debugger/break2.php
T
Herman Venter 4ed56d8a1d Parse nested namespaces in break point specifications.
Changed the parser for break point specifications to allow nested namespace qualifiers. Also extended this to the exception command.
2013-06-15 19:33:45 -07:00

20 linhas
308 B
PHP

<?php
// Warning: line numbers are sensitive, do not change
function foo2($x) {
$y = $x.'_suffix';
error_log($y);
}
class cls2 {
public function pubObj($x) {
error_log("pubObj2:".$x);
}
public static function pubCls($x) {
error_log("pubCls2:".$x);
}
}
error_log('break2.php loaded');