--TEST-- Test V8::executeString() : Set property on function --SKIPIF-- --FILE-- executeString($JS, 'basic.js'); $exports->hello->foo = "bar"; $v8->func = $exports->hello; $v8->executeString('print(PHP.func.foo + "\n");'); ?> ===EOF=== --EXPECT-- bar ===EOF===