mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
f75be35312
This doesn't cover everything yet, but should be a good start for cycled in unfinished generators.
43 lines
510 B
PHP
43 lines
510 B
PHP
--TEST--
|
|
Collection of some cycles on unfinished generators
|
|
--FILE--
|
|
<?php
|
|
|
|
// CV
|
|
function gen1() {
|
|
$gen = yield;
|
|
yield;
|
|
}
|
|
|
|
$gen = gen1();
|
|
$gen->send($gen);
|
|
|
|
// This
|
|
class Test {
|
|
public $gen;
|
|
public function gen2() {
|
|
yield;
|
|
}
|
|
}
|
|
|
|
$test = new Test;
|
|
$test->gen = $test->gen2();
|
|
|
|
// Closure object
|
|
$gen3 = (function() use (&$gen3) {
|
|
yield;
|
|
})();
|
|
|
|
// Yield from array
|
|
function gen4() {
|
|
yield from [yield];
|
|
}
|
|
|
|
$gen = gen4();
|
|
$gen->send($gen);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|