annotate vendor/nikic/php-parser/test/code/parser/stmt/namespace/nested.test @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 4c8ae668cc8c
children
rev   line source
Chris@0 1 Nested namespaces are not allowed
Chris@0 2 -----
Chris@0 3 <?php
Chris@0 4 namespace A {
Chris@0 5 namespace B {
Chris@0 6
Chris@0 7 }
Chris@0 8 }
Chris@0 9 -----
Chris@0 10 Namespace declarations cannot be nested from 3:5 to 5:5
Chris@0 11 array(
Chris@0 12 0: Stmt_Namespace(
Chris@0 13 name: Name(
Chris@0 14 parts: array(
Chris@0 15 0: A
Chris@0 16 )
Chris@0 17 )
Chris@0 18 stmts: array(
Chris@0 19 0: Stmt_Namespace(
Chris@0 20 name: Name(
Chris@0 21 parts: array(
Chris@0 22 0: B
Chris@0 23 )
Chris@0 24 )
Chris@0 25 stmts: array(
Chris@0 26 )
Chris@0 27 )
Chris@0 28 )
Chris@0 29 )
Chris@0 30 )