mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
3ae995f03c
This implements a reduced variant of #1226 with just the following change: -Fatal error: Uncaught exception 'EngineException' with message 'Call to private method foo::bar() from context ''' in %s:%d +Fatal error: Uncaught EngineException: Call to private method foo::bar() from context '' in %s:%d The '' wrapper around messages is very weird if the exception message itself contains ''. Futhermore having the message wrapped in '' doesn't work for the "and defined" suffix of TypeExceptions.
28 lines
422 B
PHP
28 lines
422 B
PHP
--TEST--
|
|
Generator::throw() where the exception is caught in the generator
|
|
--FILE--
|
|
<?php
|
|
|
|
function gen() {
|
|
echo "before yield\n";
|
|
try {
|
|
yield;
|
|
} catch (RuntimeException $e) {
|
|
echo $e, "\n\n";
|
|
}
|
|
|
|
yield 'result';
|
|
}
|
|
|
|
$gen = gen();
|
|
var_dump($gen->throw(new RuntimeException('Test')));
|
|
|
|
?>
|
|
--EXPECTF--
|
|
before yield
|
|
RuntimeException: Test in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
|
|
string(6) "result"
|