mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-11-27 04:24:43 +01:00
46cbd9393a
If the Nop is created to collect comments, place it directly after the comment, instead of at the next non-whitespace character.
27 lines
348 B
Plaintext
27 lines
348 B
Plaintext
Positions for leading nop statement
|
|
-----
|
|
<?php
|
|
/* Comment */
|
|
-----
|
|
!!positions
|
|
array(
|
|
0: Stmt_Nop[2:14 - 2:13](
|
|
comments: array(
|
|
0: /* Comment */
|
|
)
|
|
)
|
|
)
|
|
-----
|
|
<?php
|
|
{
|
|
/* comment */
|
|
}
|
|
-----
|
|
!!positions
|
|
array(
|
|
0: Stmt_Nop[3:0 - 3:17](
|
|
comments: array(
|
|
0: /* comment */
|
|
)
|
|
)
|
|
) |