1Try/Catch without variable
2-----
3<?php
4
5try {
6
7} catch (Exception) {
8
9}
10-----
11array(
12    0: Stmt_TryCatch(
13        stmts: array(
14        )
15        catches: array(
16            0: Stmt_Catch(
17                types: array(
18                    0: Name(
19                        name: Exception
20                    )
21                )
22                var: null
23                stmts: array(
24                )
25            )
26        )
27        finally: null
28    )
29)
30