php-parser/test/code/formatPreservation/inlineHtml.test

16 lines
168 B
Plaintext
Raw Normal View History

2017-12-24 18:04:51 +01:00
Handling of inline HTML
-----
<?php
function test() {
?>Foo<?php
}
-----
$stmts[0]->setAttribute('origNode', null);
-----
<?php
function test()
{
?>Foo<?php
}