Mercurial > hg > isophonics-drupal-site
view vendor/nikic/php-parser/test/code/parser/stmt/namespace/outsideStmt.test @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 5fb285c0d0e3 |
children |
line wrap: on
line source
Some statements may occur outside of namespaces ----- <?php declare(A='B'); namespace B { } __halt_compiler() ?> Hi! ----- array( 0: Stmt_Declare( declares: array( 0: Stmt_DeclareDeclare( key: Identifier( name: A ) value: Scalar_String( value: B ) ) ) stmts: null ) 1: Stmt_Namespace( name: Name( parts: array( 0: B ) ) stmts: array( ) ) 2: Stmt_HaltCompiler( remaining: Hi! ) ) ----- <?php /* Comment */ ; namespace Foo; ----- array( 0: Stmt_Nop( comments: array( 0: /* Comment */ ) ) 1: Stmt_Namespace( name: Name( parts: array( 0: Foo ) ) stmts: array( ) ) )