0
0
mirror of https://github.com/phpv8/v8js.git synced 2024-09-16 18:05:18 +00:00

Test export of undeclared properties in derived classes

This commit is contained in:
Stefan Siegl 2013-10-19 02:25:25 +02:00
parent c77cdf4b6f
commit 683ac347c7

View File

@ -0,0 +1,26 @@
--TEST--
Test V8::executeString() : Extra properties on derived class
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php
class V8Wrapper extends V8Js {
protected $testing;
public function __construct() {
parent::__construct();
$this->testing = 23;
$this->extraTesting = 42;
}
}
$v8 = new V8Wrapper();
$v8->executeString('print(PHP.testing + "\n");');
$v8->executeString('print(PHP.extraTesting + "\n");');
?>
===EOF===
--EXPECT--
undefined
42
===EOF===