Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/haltCompiler.test @ 7:848c88cfe644
More layout
author | Chris Cannam |
---|---|
date | Fri, 05 Jan 2018 13:59:44 +0000 |
parents | 4c8ae668cc8c |
children | 5fb285c0d0e3 |
line wrap: on
line source
__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: ) )