2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2015-06-20 11:28:58 +02:00
|
|
|
|
|
|
|
namespace PhpParser;
|
|
|
|
|
2018-01-10 17:24:26 +01:00
|
|
|
class ParserFactory
|
|
|
|
{
|
2015-06-20 11:28:58 +02:00
|
|
|
const PREFER_PHP7 = 1;
|
|
|
|
const PREFER_PHP5 = 2;
|
|
|
|
const ONLY_PHP7 = 3;
|
|
|
|
const ONLY_PHP5 = 4;
|
|
|
|
|
|
|
|
/**
|
2015-07-12 22:53:04 +02:00
|
|
|
* Creates a Parser instance, according to the provided kind.
|
|
|
|
*
|
|
|
|
* @param int $kind One of ::PREFER_PHP7, ::PREFER_PHP5, ::ONLY_PHP7 or ::ONLY_PHP5
|
|
|
|
* @param Lexer|null $lexer Lexer to use. Defaults to emulative lexer when not specified
|
2015-07-14 21:11:54 +02:00
|
|
|
* @param array $parserOptions Parser options. See ParserAbstract::__construct() argument
|
2015-07-12 22:53:04 +02:00
|
|
|
*
|
|
|
|
* @return Parser The parser instance
|
2015-06-20 11:28:58 +02:00
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function create(int $kind, Lexer $lexer = null, array $parserOptions = []) : Parser {
|
2015-07-12 22:53:04 +02:00
|
|
|
if (null === $lexer) {
|
|
|
|
$lexer = new Lexer\Emulative();
|
|
|
|
}
|
2015-06-20 11:28:58 +02:00
|
|
|
switch ($kind) {
|
|
|
|
case self::PREFER_PHP7:
|
|
|
|
return new Parser\Multiple([
|
2015-07-14 21:11:54 +02:00
|
|
|
new Parser\Php7($lexer, $parserOptions), new Parser\Php5($lexer, $parserOptions)
|
2015-06-20 11:28:58 +02:00
|
|
|
]);
|
|
|
|
case self::PREFER_PHP5:
|
|
|
|
return new Parser\Multiple([
|
2015-07-14 21:11:54 +02:00
|
|
|
new Parser\Php5($lexer, $parserOptions), new Parser\Php7($lexer, $parserOptions)
|
2015-06-20 11:28:58 +02:00
|
|
|
]);
|
|
|
|
case self::ONLY_PHP7:
|
2015-07-14 21:11:54 +02:00
|
|
|
return new Parser\Php7($lexer, $parserOptions);
|
2015-06-20 11:28:58 +02:00
|
|
|
case self::ONLY_PHP5:
|
2015-07-14 21:11:54 +02:00
|
|
|
return new Parser\Php5($lexer, $parserOptions);
|
2015-06-20 11:28:58 +02:00
|
|
|
default:
|
|
|
|
throw new \LogicException(
|
|
|
|
'Kind must be one of ::PREFER_PHP7, ::PREFER_PHP5, ::ONLY_PHP7 or ::ONLY_PHP5'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|