mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 12:38:41 +00:00
31 lines
536 B
PHP
31 lines
536 B
PHP
--TEST--
|
|
Test V8::executeString() : Method access on derived classes (protected)
|
|
--SKIPIF--
|
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class Foo extends \V8Js
|
|
{
|
|
protected function hello()
|
|
{
|
|
print("Hello World\n");
|
|
}
|
|
}
|
|
|
|
$JS = <<< EOT
|
|
PHP.hello();
|
|
EOT;
|
|
|
|
$v8 = new Foo();
|
|
$v8->executeString($JS);
|
|
|
|
?>
|
|
===EOF===
|
|
--EXPECTF--
|
|
Fatal error: Uncaught V8JsScriptException: V8Js::compileString():1: TypeError: %s in %s
|
|
Stack trace:
|
|
#0 %s: V8Js->executeString('PHP.hello();')
|
|
#1 {main}
|
|
thrown in %s on line 16
|