mirror of
https://github.com/phpv8/v8js.git
synced 2024-12-22 03:01:51 +00:00
add test so that 'this === global'
This commit is contained in:
parent
e4ab07de03
commit
c20c19c126
@ -8,6 +8,10 @@ Test V8Js::executeString : Global scope links global object
|
||||
$JS = <<< EOT
|
||||
var_dump(typeof global);
|
||||
var_dump(global.var_dump === var_dump);
|
||||
|
||||
// also this is equal to global scope, at least in global execution context
|
||||
// (i.e. off modules)
|
||||
var_dump(this === global);
|
||||
EOT;
|
||||
|
||||
$v8 = new V8Js();
|
||||
@ -17,4 +21,5 @@ $v8->executeString($JS);
|
||||
--EXPECT--
|
||||
string(6) "object"
|
||||
bool(true)
|
||||
===EOF===
|
||||
bool(true)
|
||||
===EOF===
|
||||
|
Loading…
Reference in New Issue
Block a user