php-parser/test/code/formatPreservation/inlineHtml.test
2017-12-26 15:08:29 +01:00

16 lines
168 B
Plaintext

Handling of inline HTML
-----
<?php
function test() {
?>Foo<?php
}
-----
$stmts[0]->setAttribute('origNode', null);
-----
<?php
function test()
{
?>Foo<?php
}