mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 18:07:58 +01:00
81e53ce0ff
This changset also adds unit tests for Comments and adds a way to test the pretty printer.
47 lines
918 B
Plaintext
47 lines
918 B
Plaintext
Declare
|
|
-----
|
|
<?php
|
|
|
|
declare (A='B', C='D') {}
|
|
|
|
declare (A='B', C='D'):
|
|
enddeclare;
|
|
-----
|
|
array(
|
|
0: Stmt_Declare(
|
|
declares: array(
|
|
0: Stmt_DeclareDeclare(
|
|
key: A
|
|
value: Scalar_String(
|
|
value: B
|
|
)
|
|
)
|
|
1: Stmt_DeclareDeclare(
|
|
key: C
|
|
value: Scalar_String(
|
|
value: D
|
|
)
|
|
)
|
|
)
|
|
stmts: array(
|
|
)
|
|
)
|
|
1: Stmt_Declare(
|
|
declares: array(
|
|
0: Stmt_DeclareDeclare(
|
|
key: A
|
|
value: Scalar_String(
|
|
value: B
|
|
)
|
|
)
|
|
1: Stmt_DeclareDeclare(
|
|
key: C
|
|
value: Scalar_String(
|
|
value: D
|
|
)
|
|
)
|
|
)
|
|
stmts: array(
|
|
)
|
|
)
|
|
) |