mirror of
https://github.com/phpv8/v8js.git
synced 2024-11-08 10:18:41 +00:00
Test export of undeclared properties in derived classes
This commit is contained in:
parent
c77cdf4b6f
commit
683ac347c7
26
tests/derived_class_properties_extra.phpt
Normal file
26
tests/derived_class_properties_extra.phpt
Normal 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===
|
Loading…
Reference in New Issue
Block a user