Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/test/code/parser/stmt/unset.test @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 Unset | |
2 ----- | |
3 <?php | |
4 | |
5 unset($a); | |
6 unset($b, $c); | |
7 ----- | |
8 array( | |
9 0: Stmt_Unset( | |
10 vars: array( | |
11 0: Expr_Variable( | |
12 name: a | |
13 ) | |
14 ) | |
15 ) | |
16 1: Stmt_Unset( | |
17 vars: array( | |
18 0: Expr_Variable( | |
19 name: b | |
20 ) | |
21 1: Expr_Variable( | |
22 name: c | |
23 ) | |
24 ) | |
25 ) | |
26 ) |