2c37e4477e
Port debugger unit tests for break command to new framework to prepare for added many more tests dealing with nested namespaces.
20 linhas
309 B
PHP
20 linhas
309 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('break1.inc1 loaded');
|