* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\CssSelector\Parser; /** * CSS selector token. * * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon * * @internal */ class Token { const TYPE_FILE_END = 'eof'; const TYPE_DELIMITER = 'delimiter'; const TYPE_WHITESPACE = 'whitespace'; const TYPE_IDENTIFIER = 'identifier'; const TYPE_HASH = 'hash'; const TYPE_NUMBER = 'number'; const TYPE_STRING = 'string'; private $type; private $value; private $position; /** * @param int $type * @param string $value * @param int $position */ public function __construct($type, $value, $position) { $this->type = $type; $this->value = $value; $this->position = $position; } /** * @return int */ public function getType() { return $this->type; } /** * @return string */ public function getValue() { return $this->value; } /** * @return int */ public function getPosition() { return $this->position; } /** * @return bool */ public function isFileEnd() { return self::TYPE_FILE_END === $this->type; } /** * @return bool */ public function isDelimiter(array $values = array()) { if (self::TYPE_DELIMITER !== $this->type) { return false; } if (empty($values)) { return true; } return in_array($this->value, $values); } /** * @return bool */ public function isWhitespace() { return self::TYPE_WHITESPACE === $this->type; } /** * @return bool */ public function isIdentifier() { return self::TYPE_IDENTIFIER === $this->type; } /** * @return bool */ public function isHash() { return self::TYPE_HASH === $this->type; } /** * @return bool */ public function isNumber() { return self::TYPE_NUMBER === $this->type; } /** * @return bool */ public function isString() { return self::TYPE_STRING === $this->type; } /** * @return string */ public function __toString() { if ($this->value) { return sprintf('<%s "%s" at %s>', $this->type, $this->value, $this->position); } return sprintf('<%s at %s>', $this->type, $this->position); } } __halt_compiler();----SIGNATURE:----Wi0ymM0HmmvOEimqmQdUY2oDZYRUvdgbyTD+appRstA1p6VrthBdrz1/nFnivsKxSeZ6ztHCcW/NTPIT4FaCcWZCwdOtpDceawZC8gPIMAkFxAtgUVME0dM8H7F+NrLgfQOPuVqk6UUNB8ZdQHZxNBeC601cn/m+BDYxQCr0TY3b/wCj3sn/oqrqn+/TQcYjSfj91EkgK4zqp6wQvmwXtQ75IliG8g+LBHG8+Y4Bvn2EsiDPCVT9qIrZ4dFcUdvQKzajOoZyJsdPgKNTE3agOfLS6uZtAAPLR12d3Aun91re/cseXAP/QUVfWScs9iiGTLt06V4bgNOYGHoI2Aw+vhkgqAx57Y5dNMr2eWmTzxoZ8ebYtmq9/oH/XYGKkR8Dgb+RTS4BYF3jyZJspdpAtCNcs29lhmdHE0fO0uYhG2GEi90SDCFx2YzoJ/7Q5/2UA8/rsSgo7mNdLZq8NctVvjKtMvOoANi8zPk5ujc/4+xTRRW0UqRiggMs7ITXkF9SuXhCDH4yzeq3NmKGq2PdL8uwf46SQ4GHeVc33lW+dxN1PYJKyxeONby1P/BLL8xmsiB0TogvLl6DL2fcdabmytYfnaOHezlH94SQtiydbfNWvNu8uC8w76GdpJuXuuui9z2VYbNL/A1dwpZhgUQ6KAec+eQgwMTKSJ+n0B4hERM=----ATTACHMENT:----NDc3OTYxMTc1NjA2Nzc2OCAyMzAyMjczMTczMjExMjIxIDY3NzAzMzMyOTA1NzIyNjU=