Home
last modified time | relevance | path

Searched refs:finally (Results 1 – 25 of 122) sorted by path

12345

/PHP-7.4/Zend/tests/assert/
H A Dexpect_015.phpt117 } finally {
268 } finally {
/PHP-7.4/Zend/tests/
H A Dbug65784.phpt2 Fixed Bug #65784 (Segfault with finally)
9 } finally {
30 } finally {
47 } finally {
H A Dbug66608.phpt2 Bug #66608 (Incorrect behavior with nested "finally" blocks)
9 } finally {
11 } finally {
15 } finally {
20 } finally {
22 } finally {
25 } finally {
32 } finally {
37 } finally {
49 } finally {
H A Dbug69740.phpt2 Bug #69740: finally in generator (yield) swallows exception in iteration
10 } finally {
11 echo "finally\n";
23 finally
H A Dbug70012.phpt2 Bug #70012 (Exception lost with nested finally block)
10 } finally {
11 echo " Middle finally\n";
14 } finally {
15 echo " Inner finally\n";
21 } finally {
22 echo "Outer finally\n";
28 Middle finally
30 Inner finally
32 Outer finally
H A Dbug70944.phpt2 Bug #70944 (try{ } finally{} can create infinite chains of exceptions)
9 } finally {
20 } finally {
H A Dbug71980.phpt17 } finally {
25 } finally {
H A Dbug72188.phpt2 Bug #72188 (Nested try/finally blocks losing return value)
8 } finally {
11 } finally {
H A Dbug72215.phpt2 Bug #72215 (Wrong return value if var modified in finally)
9 } finally {
H A Dbug72215_1.phpt2 Bug #72215.1 (Wrong return value if var modified in finally)
9 } finally {
H A Dbug72215_2.phpt2 Bug #72215.1 (Wrong return value if var modified in finally)
9 } finally {
H A Dbug72215_3.phpt2 Bug #72215.3 (Wrong return value if var modified in finally)
8 } finally {
H A Dbug72216.phpt2 Bug #72216 (Return by reference with finally is not memory safe)
9 } finally {
H A Dbug72347.phpt2 Bug #72347 (VERIFY_RETURN type casts visible in finally)
9 } finally {
H A Dbug74840.phpt2 Bug #74840: Opcache overwrites argument of GENERATOR_RETURN within finally
9 } finally {
H A Dexception_set_previous_leak.phpt2 Leak when setting recursive previous exception in finally handling
11 } finally {
/PHP-7.4/Zend/tests/generators/
H A Dbug71441.phpt2 Bug #71441 (Typehinted Generator with return in try/finally crashes)
14 } finally {
H A Dbug71601.phpt2 Bug #71601 (finally block not executed after yield from)
11 } finally {
12 echo "Inner finally\n";
20 } finally {
37 Inner finally
H A Dbug74606.phpt2 Bug #74606 (Segfault within try/catch/finally nesting in Generators)
14 } finally {
H A Dbug75396.phpt2 Bug #75396: Exit inside generator finally results in fatal error
12 } finally {
H A Dexception_during_shutdown.phpt11 } finally {
12 echo "before yield in finally\n";
14 echo "after yield in finally\n";
16 echo "after finally\n";
25 before yield in finally
27 Fatal error: Uncaught Error: Cannot yield from finally in a force-closed generator in %s:%d
/PHP-7.4/Zend/tests/generators/errors/
H A Dyield_in_force_closed_finally_error.phpt2 yield cannot be used in a finally block when the generator is force-closed
11 } finally {
12 echo "before yield in finally\n";
14 echo "after yield in finally\n";
17 echo "after finally\n";
27 before yield in finally
29 Fatal error: Uncaught Error: Cannot yield from finally in a force-closed generator in %s:%d
/PHP-7.4/Zend/tests/generators/finally/
H A Dfinally_ran_on_close.phpt2 finally is run even if a generator is closed mid-execution
12 } finally {
13 echo "finally run\n";
15 echo "code after finally\n";
16 } finally {
17 echo "second finally run\n";
19 echo "code after second finally\n";
29 finally run
30 second finally run
H A Dreturn_return.phpt2 try { return } finally { return } in generator
12 } finally {
13 echo "before return in inner finally\n";
15 echo "after return in inner finally\n";
17 } finally {
18 echo "outer finally run\n";
21 echo "code after finally\n";
32 before return in inner finally
33 outer finally run
H A Dreturn_yield.phpt2 try { return } finally { yield }
9 } finally {

Completed in 27 milliseconds

12345