mirror of
https://github.com/php/php-src.git
synced 2025-08-20 01:14:28 +02:00
remove code directory
This commit is contained in:
parent
6817683027
commit
c4c9119a35
2 changed files with 11 additions and 17 deletions
|
@ -1,8 +0,0 @@
|
|||
<?php
|
||||
class test {
|
||||
|
||||
public function testMethod(){}
|
||||
private function testPrivateMethod(){}
|
||||
protected function testProtectedMethod(){}
|
||||
}
|
||||
?>
|
|
@ -4,23 +4,25 @@
|
|||
# expect: TEST::FORMAT
|
||||
# options: -rr
|
||||
#################################################
|
||||
#[Set execution context: %s%eclass.php]
|
||||
#[Attempting compilation of %s%eclass.php]
|
||||
#[Success]
|
||||
#[User Class: test]
|
||||
#Methods (3):
|
||||
#L%d-%d test::testMethod() %s%eclass.php
|
||||
#L%d-%d test::testMethod() %s
|
||||
# L%d %s ZEND_RETURN C%d <unused> <unused>
|
||||
# L%d-%d test::testPrivateMethod() %s%eclass.php
|
||||
# L%d-%d test::testPrivateMethod() %s
|
||||
# L%d %s ZEND_RETURN C%d <unused> <unused>
|
||||
# L%d-%d test::testProtectedMethod() %s%eclass.php
|
||||
# L%d-%d test::testProtectedMethod() %s
|
||||
# L%d %s ZEND_RETURN C%d <unused> <unused>
|
||||
#[User Method testMethod]
|
||||
# L%d-%d test::testMethod() %s%eclass.php
|
||||
# L%d-%d test::testMethod() %s
|
||||
# L%d %s ZEND_RETURN C%d <unused> <unused>
|
||||
#################################################
|
||||
exec sapi/phpdbg/tests/code/class.php
|
||||
compile
|
||||
<:
|
||||
class test {
|
||||
public function testMethod(){}
|
||||
private function testPrivateMethod(){}
|
||||
protected function testProtectedMethod(){}
|
||||
}
|
||||
:>
|
||||
print class test
|
||||
print method test::testMethod
|
||||
q
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue