0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-11-09 23:08:41 +00:00
phpv8/tests/fatal_error_rethrow.phpt

26 lines
410 B
PHP

--TEST--
Test V8::executeString() : Fatal Error rethrowing
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
$js = new V8Js();
$js->foo = function() {
$bar = null;
$bar->bar();
};
$script = <<<END
PHP.foo();
END;
$js->executeString($script);
?>
===EOF===
--EXPECTF--
Fatal error: Call to a member function bar() on a non-object in %s/fatal_error_rethrow.php on line 7