Mercurial > hg > isophonics-drupal-site
comparison vendor/nikic/php-parser/test/code/parser/stmt/class/interface.test @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children | 5fb285c0d0e3 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 Interface | |
2 ----- | |
3 <?php | |
4 | |
5 interface A extends C, D { | |
6 public function a(); | |
7 } | |
8 ----- | |
9 array( | |
10 0: Stmt_Interface( | |
11 name: A | |
12 extends: array( | |
13 0: Name( | |
14 parts: array( | |
15 0: C | |
16 ) | |
17 ) | |
18 1: Name( | |
19 parts: array( | |
20 0: D | |
21 ) | |
22 ) | |
23 ) | |
24 stmts: array( | |
25 0: Stmt_ClassMethod( | |
26 flags: MODIFIER_PUBLIC (1) | |
27 byRef: false | |
28 name: a | |
29 params: array( | |
30 ) | |
31 returnType: null | |
32 stmts: null | |
33 ) | |
34 ) | |
35 ) | |
36 ) |