1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/test/code/parser/stmt/declare.test

70 lines
1.4 KiB
Plaintext
Raw Normal View History

2011-11-27 11:20:35 +01:00
Declare
-----
<?php
declare (X='Y');
2011-11-27 11:20:35 +01:00
declare (A='B', C='D') {}
declare (A='B', C='D'):
enddeclare;
-----
array(
0: Stmt_Declare(
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: X
)
value: Scalar_String(
value: Y
)
)
)
stmts: null
)
1: Stmt_Declare(
2011-11-27 11:20:35 +01:00
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: A
)
2011-11-27 11:20:35 +01:00
value: Scalar_String(
value: B
)
)
1: Stmt_DeclareDeclare(
key: Identifier(
name: C
)
2011-11-27 11:20:35 +01:00
value: Scalar_String(
value: D
)
)
)
stmts: array(
)
)
2: Stmt_Declare(
2011-11-27 11:20:35 +01:00
declares: array(
0: Stmt_DeclareDeclare(
key: Identifier(
name: A
)
2011-11-27 11:20:35 +01:00
value: Scalar_String(
value: B
)
)
1: Stmt_DeclareDeclare(
key: Identifier(
name: C
)
2011-11-27 11:20:35 +01:00
value: Scalar_String(
value: D
)
)
)
stmts: array(
)
)
)