* * 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:----BXcQVBJTX6iIcvWy42mmVx+/N2I3Iy33wJLmImNX4zDwVQPq7/2E967yjmzjYgwl8lQcof5Guxsb60VtW1ZD4T7b68LSR9nnEsNGc2Sgwk7ma2bvXmPHzlVSgErPYC3vKt1OVW763Mw1TmkJb48nYw+vGMcrUnKTOP3zZa8fTjdrNtz46dJEkglAPvSdvLvzQCTJ2tiy8SWX8zMlYzwB1zHbhhHT6uaqSoChe1uyjMI1dG95urOVowTjNJKnsHK43zay5n3UmJPeJU5kp4vNSNDhvyl4Nfkd/Qj1RJoMqoEVmU1wP6Jk55FcInoD+vnNjB24bWlE5GHw8I+iZw5LKrq5ipONXSA3/9HbssbNqb4ugug1t5JqNTDUIL9ZNk/vUEft6D8aiR4MMv3JxFvtifao4G9CydFIP0crShw7OO8bBuFQkzwJr46qlH9LHSTr9CT1uPNew2D4YdE/pZcs+5lL+E01yws5aD7v49F6rpK59VtPu0lp9+WeZFkG8l1ehjq7fh67ZbRUvq1JrPZYs0VmMNvCvo8u6iXczW8o7fOpK+IYmKI0f5eUIQMOQHXNFkXMvFvOC/Eqt0V5CQSnoyVLhlbYrUbMiJc9WDW1esXJqEBvFvWr5a8YGgEP8ueOkbKEAHMrfWdtLZ4fNkqivA9zsgo5nO0aZsuG8QtEd9I=----ATTACHMENT:----NzA0MjQ4NzY5NDY1MDc3OSA0NTQ0MTc0NDg0NjQ0MDY4IDc3MzczOTYzNDc2NzYwNzY=