Searched refs:KIND_NOWDOC (Results 1 – 7 of 7) sorted by relevance
/PHP-Parser/test/PhpParser/ |
H A D | ParserTestAbstract.php | 153 …["<<<'STR'\nSTR\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR', 'docIndentation' => '']], 156 …["b<<<'STR'\nSTR\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR', 'docIndentation' => '']… 157 …["B<<<'STR'\nSTR\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR', 'docIndentation' => '']… 158 …["<<< \t 'STR'\nSTR\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR', 'docIndentation' => … 159 …["<<<'\xff'\n\xff\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => "\xff", 'docIndentation' => '… 166 …["<<<'STR'\n Foo\n STR\n", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR', 'docIndentati…
|
H A D | PrettyPrinterTest.php | 100 $nowdoc = ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'STR']; 109 [new String_('foo', ['kind' => String_::KIND_NOWDOC]), "'foo'"], 112 … [new String_("A\nB\nC", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'A']), "'A\nB\nC'"], 113 … [new String_("A\nB\nC", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'B']), "'A\nB\nC'"], 114 … [new String_("A\nB\nC", ['kind' => String_::KIND_NOWDOC, 'docLabel' => 'C']), "'A\nB\nC'"], 279 'kind' => String_::KIND_NOWDOC,
|
/PHP-Parser/test/code/parser/ |
H A D | formattingAttributes.test | 164 kind: KIND_NOWDOC (4) 173 kind: KIND_NOWDOC (4) 182 kind: KIND_NOWDOC (4)
|
/PHP-Parser/lib/PhpParser/Node/Scalar/ |
H A D | String_.php | 13 public const KIND_NOWDOC = 4; define in PhpParser\\Node\\Scalar\\String_
|
/PHP-Parser/lib/PhpParser/ |
H A D | NodeDumper.php | 245 String_::KIND_NOWDOC => 'KIND_NOWDOC',
|
H A D | ParserAbstract.php | 814 ? String_::KIND_HEREDOC : String_::KIND_NOWDOC;
|
/PHP-Parser/lib/PhpParser/PrettyPrinter/ |
H A D | Standard.php | 142 case Scalar\String_::KIND_NOWDOC:
|
Completed in 25 milliseconds