Home
last modified time | relevance | path

Searched refs:parseUnicodeEscape (Results 1 – 2 of 2) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Scalar/
H A DString_.php47 * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes
49 …public static function fromString(string $str, array $attributes = [], bool $parseUnicodeEscape = … argument
56 $string = self::parse($str, $parseUnicodeEscape);
67 * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes
71 public static function parse(string $str, bool $parseUnicodeEscape = true): string { argument
85 substr($str, $bLength + 1, -1), '"', $parseUnicodeEscape
97 * @param bool $parseUnicodeEscape Whether to parse PHP 7 \u escapes
101 …c function parseEscapeSequences(string $str, ?string $quote, bool $parseUnicodeEscape = true): str… argument
107 if ($parseUnicodeEscape) {
/PHP-Parser/lib/PhpParser/
H A DParserAbstract.php809 array $attributes, array $endTokenAttributes, bool $parseUnicodeEscape argument
855 $contents = String_::parseEscapeSequences($contents, null, $parseUnicodeEscape);
880 … $part->value = String_::parseEscapeSequences($part->value, null, $parseUnicodeEscape);

Completed in 17 milliseconds