remove code directory

This commit is contained in:
krakjoe 2013-12-05 22:53:03 +00:00
parent 6817683027
commit c4c9119a35
2 changed files with 11 additions and 17 deletions

View file

@ -1,8 +0,0 @@
<?php
class test {
public function testMethod(){}
private function testPrivateMethod(){}
protected function testProtectedMethod(){}
}
?>

View file

@ -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