059b5f113b39aa601638563a9189f927419e26de
[yaffs-website] / vendor / nikic / php-parser / test / code / formatPreservation / nopCommentAtEnd.test
1 Nop statement with comment at end (#513)
2 -----
3 <?php
4 $foo;
5 $bar;
6 -----
7 $stmts[1] = new Stmt\Nop(['comments' => [new Comment('//Some comment here')]]);
8 -----
9 <?php
10 $foo;
11 //Some comment here