Searched refs:InterpolatedString (Results 1 – 11 of 11) sorted by relevance
/PHP-Parser/lib/PhpParser/Node/Scalar/ |
H A D | InterpolatedString.php | 9 class InterpolatedString extends Scalar { class 34 class_alias(InterpolatedString::class, Encapsed::class);
|
/PHP-Parser/test/PhpParser/ |
H A D | PrettyPrinterTest.php | 8 use PhpParser\Node\Scalar\InterpolatedString; alias 130 [new InterpolatedString([new InterpolatedStringPart('')], $heredoc), "<<<STR\nSTR"], 136 … [new InterpolatedString([new InterpolatedStringPart('foo')], $heredoc), "<<<STR\nfoo\nSTR"], 137 …[new InterpolatedString([new InterpolatedStringPart('foo'), new Expr\Variable('y')], $heredoc), "<… 138 …[new InterpolatedString([new Expr\Variable('y'), new InterpolatedStringPart("STR\n")], $heredoc), … 140 …[new InterpolatedString([new Expr\Variable('y'), new InterpolatedStringPart("\nSTR")], $heredoc), … 141 …[new InterpolatedString([new InterpolatedStringPart("STR\n"), new Expr\Variable('y')], $heredoc), … 142 [new InterpolatedString([new InterpolatedStringPart("STR")], $heredoc), '"STR"'], 143 …[new InterpolatedString([new InterpolatedStringPart("\nSTR"), new Expr\Variable('y')], $heredoc), … 144 …[new InterpolatedString([new InterpolatedStringPart("STR\x80"), new Expr\Variable('y')], $heredoc)… [all …]
|
H A D | CompatibilityTest.php | 30 $node = new Scalar\InterpolatedString([$part]); 59 $this->assertTrue($node instanceof Scalar\InterpolatedString);
|
/PHP-Parser/lib/PhpParser/ |
H A D | NodeDumper.php | 9 use PhpParser\Node\Scalar\InterpolatedString; alias 120 if ($node instanceof String_ || $node instanceof InterpolatedString) {
|
H A D | ParserAbstract.php | 19 use PhpParser\Node\Scalar\InterpolatedString; alias 887 return new InterpolatedString($newContents, $attributes);
|
H A D | PrettyPrinterAbstract.php | 1361 Scalar\InterpolatedString::class => [
|
/PHP-Parser/ |
H A D | UPGRADE-5.0.md | 282 * `Node\Scalar\Encapsed` is now `Node\Scalar\InterpolatedString`.
|
/PHP-Parser/grammar/ |
H A D | php.y | 1239 …'"', $this->phpVersion->supportsUnicodeEscapes()); $$ = new Scalar\InterpolatedString($2, $attrs);…
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 180 protected function pScalar_InterpolatedString(Scalar\InterpolatedString $node): string {
|
/PHP-Parser/lib/PhpParser/Parser/ |
H A D | Php7.php | 2581 …sion->supportsUnicodeEscapes()); } }; $self->semValue = new Scalar\InterpolatedString($self->semSt…
|
H A D | Php8.php | 2583 …sion->supportsUnicodeEscapes()); } }; $self->semValue = new Scalar\InterpolatedString($self->semSt…
|
Completed in 70 milliseconds