Home
last modified time | relevance | path

Searched refs:yield (Results 1 – 25 of 83) sorted by path

1234

/PHP-5.5/
H A DNEWS1723 . Fixed bug #65035 (yield / exit segfault). (Nikita)
9706 - Fixed bug #30394 (Assignment operators yield wrong result with __get/__set).
/PHP-5.5/Zend/tests/
H A Dbug30394.phpt2 Bug #30394 (Assignment operators yield wrong result with __get/__set)
H A Dbug62991.phpt10 yield "hi";
19 yield "hi";
H A Dbug64979.phpt9 yield ++$foo;
H A Dbug69221.phpt7 yield 1;
H A Dbug69221_2.phpt7 yield 1;
/PHP-5.5/Zend/tests/generators/
H A Dauto_incrementing_keys.phpt7 yield 'foo';
8 yield 'bar';
9 yield 5 => 'rab';
10 yield 'oof';
H A Dbacktrace.phpt12 yield; // force generator
H A Dbug63066.phpt7 yield 'foo';
H A Dbug65035.phpt2 Bug #65035: yield / exit segfault
8 yield;
H A Dbug65161.phpt13 yield;
H A Dbug66041.phpt6 list($value) = yield;
H A Dbug67497.phpt8 yield $a;
H A Dbug69419.phpt8 yield $var;
H A Dclone.phpt7 yield;
H A Ddynamic_call.phpt7 yield $foo;
8 yield $bar;
/PHP-5.5/Zend/tests/generators/errors/
H A Dgenerator_cannot_return_before_yield_error.phpt2 Generators cannot return values (even before yield)
8 yield;
H A Dgenerator_cannot_return_error.phpt7 yield;
H A Dnon_ref_generator_iterated_by_ref_error.phpt6 function gen() { yield; }
H A Dresume_running_generator_error.phpt7 $gen = yield;
H A Dserialize_unserialize_error.phpt6 function gen() { yield; }
H A Dyield_const_by_ref_error.phpt7 yield "foo";
H A Dyield_in_force_closed_finally_error.phpt2 yield cannot be used in a finally block when the generator is force-closed
8 echo "before yield\n";
9 yield;
10 echo "after yield\n";
12 echo "before yield in finally\n";
13 yield;
14 echo "after yield in finally\n";
26 before yield
27 before yield in finally
29 Fatal error: Cannot yield from finally in a force-closed generator in %s on line %d
H A Dyield_non_ref_function_call_by_ref_error.phpt11 yield foo();
H A Dyield_outside_function_error.phpt6 yield "Test";
10 Fatal error: The "yield" expression can only be used inside a function in %s on line %d

Completed in 51 milliseconds

1234