mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
df64d86cf4
Can happen with Nop statements.
11 lines
188 B
Plaintext
11 lines
188 B
Plaintext
Nop statement with comment at end (#513)
|
|
-----
|
|
<?php
|
|
$foo;
|
|
$bar;
|
|
-----
|
|
$stmts[1] = new Stmt\Nop(['comments' => [new Comment('//Some comment here')]]);
|
|
-----
|
|
<?php
|
|
$foo;
|
|
//Some comment here |