| 1234567891011121314151617181920212223242526272829303132333435363738 | --TEST--Test V8::executeString() : Fatal Error with recursive executeString calls--SKIPIF--<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>--FILE--<?php$js = new V8Js();$js->baz = function() {	$bar = null;	$bar->bar();};$js->bar = function() {	global $js;	$js->executeString("PHP.baz();");};$js->foo = function() {	global $js;	$js->executeString("PHP.bar();");};$js->nofail = function() {	echo "foo\n";};$js->executeString("PHP.nofail();");$js->executeString("PHP.nofail(); PHP.foo();");?>===EOF===--EXPECTF--foofooFatal error: Call to a member function bar() on %s in %s/fatal_error_recursive.php on line 7
 |