Home
last modified time | relevance | path

Searched refs:InlineHTML (Results 1 – 10 of 10) sorted by relevance

/PHP-Parser/test/code/prettyPrinter/
H A DnestedInlineHTML.test1 InlineHTML node nested inside other code
/PHP-Parser/lib/PhpParser/Node/Stmt/
H A DInlineHTML.php7 class InlineHTML extends Stmt { class
/PHP-Parser/test/PhpParser/
H A DPrettyPrinterTest.php74 $stmts = [new Stmt\InlineHTML('Hello World!', ['comments' => [$comment]])];
271 $stmts = [new Stmt\InlineHTML('Hello world')];
/PHP-Parser/lib/PhpParser/
H A DPrettyPrinterAbstract.php271 if ($stmts[0] instanceof Stmt\InlineHTML) {
274 if ($stmts[count($stmts) - 1] instanceof Stmt\InlineHTML) {
607 if ($node instanceof Stmt\InlineHTML && !$parentFormatPreserved) {
H A DParserAbstract.php691 …if ($i === 0 && $stmt instanceof Node\Stmt\InlineHTML && preg_match('/\A#!.*\r?\n\z/', $stmt->valu…
/PHP-Parser/grammar/
H A Dphp.y390 $$ = Stmt\InlineHTML[$1];
/PHP-Parser/
H A DCHANGELOG.md1009 * The `InlineHTML` node now has an `hasLeadingNewline` attribute, that specifies whether the
1144 comment followed by InlineHTML.
/PHP-Parser/lib/PhpParser/PrettyPrinter/
H A DStandard.php1013 protected function pStmt_InlineHTML(Stmt\InlineHTML $node): string {
/PHP-Parser/lib/PhpParser/Parser/
H A DPhp7.php1508 …$self->semValue = new Stmt\InlineHTML($self->semStack[$stackPos-(1-1)], $self->getAttributes($self…
H A DPhp8.php1519 …$self->semValue = new Stmt\InlineHTML($self->semStack[$stackPos-(1-1)], $self->getAttributes($self…

Completed in 62 milliseconds