Home
last modified time | relevance | path

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

/PHP-8.2/build/
H A Dgen_stub.php5559 function installPhpParser(string $version, string $phpParserDir) { argument
5568 if (is_dir($phpParserDir)) {
5583 if (!mkdir($phpParserDir)) {
5584 throw new Exception("Failed to create directory $phpParserDir");
5610 $phpParserDir = __DIR__ . "/PHP-Parser-$version";
5611 if (!is_dir($phpParserDir)) {
5612 installPhpParser($version, $phpParserDir);
5615 spl_autoload_register(static function(string $class) use ($phpParserDir) {
5617 $fileName = $phpParserDir . "/lib/" . str_replace("\\", "/", $class) . ".php";

Completed in 46 milliseconds