Home
last modified time | relevance | path

Searched refs:finally (Results 1 – 15 of 15) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DTryCatch.php13 public ?Finally_ $finally; variable in PhpParser\\Node\\Stmt\\TryCatch
20 * @param null|Finally_ $finally Optional finally node
23 …public function __construct(array $stmts, array $catches, ?Finally_ $finally = null, array $attrib… argument
27 $this->finally = $finally;
/PHP-Parser/test/code/parser/stmt/
H A DtryCatch.test11 } finally {
15 // no finally
21 finally { }
81 finally: Stmt_Finally(
112 finally: null
114 0: // no finally
122 finally: Stmt_Finally(
H A DtryWithoutCatch.test1 Cannot use try without catch or finally
9 Cannot use try without catch or finally from 3:1 to 5:1
25 finally: null
H A DtryCatch_without_variable.test27 finally: null
H A DmultiCatch.test63 finally: null
/PHP-Parser/test/code/prettyPrinter/stmt/
H A DtryCatch_without_variable.test9 } finally {
15 } finally {
H A DtryCatch.test14 } finally {
23 } finally {
/PHP-Parser/test/code/formatPreservation/
H A DremovalViaNull.test94 finally
118 $stmts[15]->finally = null;
H A DinsertionOfNullable.test96 $stmts[13]->finally = new Stmt\Finally_([]);
167 } finally {
/PHP-Parser/tools/fuzzing/
H A Dphp.dict46 "finally"
/PHP-Parser/lib/PhpParser/
H A DConstExprEvaluator.php79 } finally {
H A DParserAbstract.php1050 if (empty($node->catches) && null === $node->finally) {
/PHP-Parser/
H A DUPGRADE-3.0.md24 * The `TryCatch` subnode `finallyStmts` has been replaced with a `finally` subnode that holds an
124 creating a try block without either catch or finally. These checks have been moved from the node
H A DCHANGELOG.md1075 * The `TryCatch` subnode `finallyStmts` has been replaced with a `finally` subnode that holds an
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php953 . ($node->finally !== null ? ' ' . $this->p($node->finally) : '');

Completed in 36 milliseconds