1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2025-01-10 15:08:36 +01:00
PHP-Parser/test/code/parser/blockComments.test

31 lines
347 B
Plaintext
Raw Normal View History

Comments on blocks
-----
<?php
// foo
{
// bar
{
// baz
$a;
}
}
// empty
{}
-----
array(
0: Expr_Variable(
name: a
comments: array(
0: // foo
1: // bar
2: // baz
)
)
1: Stmt_Nop(
comments: array(
0: // empty
)
)
)