mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
df691065a6
This fixes the only left bug that was reported by parsing the PHP testsuite :)
55 lines
695 B
Plaintext
55 lines
695 B
Plaintext
__halt_compiler
|
|
-----
|
|
<?php
|
|
|
|
$a;
|
|
__halt_compiler()
|
|
?>
|
|
Hallo World!
|
|
-----
|
|
array(
|
|
0: Expr_Variable(
|
|
name: a
|
|
)
|
|
1: Stmt_HaltCompiler(
|
|
remaining: Hallo World!
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
|
|
$a;
|
|
__halt_compiler();Hallo World!
|
|
-----
|
|
array(
|
|
0: Expr_Variable(
|
|
name: a
|
|
)
|
|
1: Stmt_HaltCompiler(
|
|
remaining: Hallo World!
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
|
|
namespace A;
|
|
$a;
|
|
__halt_compiler();
|
|
-----
|
|
array(
|
|
0: Stmt_Namespace(
|
|
name: Name(
|
|
parts: array(
|
|
0: A
|
|
)
|
|
)
|
|
stmts: array(
|
|
0: Expr_Variable(
|
|
name: a
|
|
)
|
|
)
|
|
)
|
|
1: Stmt_HaltCompiler(
|
|
remaining:
|
|
)
|
|
) |