mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-12 09:29:47 +01:00
39 lines
661 B
Plaintext
39 lines
661 B
Plaintext
|
Try/catch
|
||
|
-----
|
||
|
<?php
|
||
|
try {
|
||
|
|
||
|
} catch (A $b) {
|
||
|
|
||
|
} catch (B $c) {
|
||
|
|
||
|
}
|
||
|
-----
|
||
|
array(
|
||
|
0: Stmt_TryCatch(
|
||
|
stmts: array(
|
||
|
)
|
||
|
catches: array(
|
||
|
0: Stmt_Catch(
|
||
|
type: Name(
|
||
|
parts: array(
|
||
|
0: A
|
||
|
)
|
||
|
)
|
||
|
var: b
|
||
|
stmts: array(
|
||
|
)
|
||
|
)
|
||
|
1: Stmt_Catch(
|
||
|
type: Name(
|
||
|
parts: array(
|
||
|
0: B
|
||
|
)
|
||
|
)
|
||
|
var: c
|
||
|
stmts: array(
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|
||
|
)
|