mirror of
https://github.com/phpv8/v8js.git
synced 2024-12-22 09:21:52 +00:00
Retain object indentity on 'return $this'
This commit is contained in:
parent
21c8bd2288
commit
d44592910d
50
tests/return_this_basic.phpt
Normal file
50
tests/return_this_basic.phpt
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
--TEST--
|
||||||
|
Test V8::executeString() : return $this (aka fluent setters)
|
||||||
|
--SKIPIF--
|
||||||
|
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
|
||||||
|
--FILE--
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class Foo {
|
||||||
|
private $foo;
|
||||||
|
private $bar;
|
||||||
|
|
||||||
|
public function setFoo($value)
|
||||||
|
{
|
||||||
|
$this->foo = $value;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setBar($value)
|
||||||
|
{
|
||||||
|
$this->bar = $value;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$v8 = new V8Js();
|
||||||
|
$v8->theFoo = new Foo();
|
||||||
|
|
||||||
|
$v8->executeString(<<<EOJS
|
||||||
|
var a = PHP.theFoo.setFoo(23);
|
||||||
|
var b = a.setBar(42);
|
||||||
|
|
||||||
|
var_dump(PHP.theFoo === a);
|
||||||
|
var_dump(PHP.theFoo === b);
|
||||||
|
EOJS
|
||||||
|
);
|
||||||
|
|
||||||
|
var_dump($v8->theFoo);
|
||||||
|
|
||||||
|
?>
|
||||||
|
===EOF===
|
||||||
|
--EXPECTF--
|
||||||
|
bool(true)
|
||||||
|
bool(true)
|
||||||
|
object(Foo)#%d (2) {
|
||||||
|
["foo":"Foo":private]=>
|
||||||
|
int(23)
|
||||||
|
["bar":"Foo":private]=>
|
||||||
|
int(42)
|
||||||
|
}
|
||||||
|
===EOF===
|
@ -156,6 +156,9 @@ failure:
|
|||||||
} else {
|
} else {
|
||||||
v8js_terminate_execution(isolate);
|
v8js_terminate_execution(isolate);
|
||||||
}
|
}
|
||||||
|
} else if (retval_ptr == value) {
|
||||||
|
// special case: "return $this"
|
||||||
|
return_value = info.Holder();
|
||||||
} else if (retval_ptr != NULL) {
|
} else if (retval_ptr != NULL) {
|
||||||
return_value = zval_to_v8js(retval_ptr, isolate TSRMLS_CC);
|
return_value = zval_to_v8js(retval_ptr, isolate TSRMLS_CC);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user