You are here

private function CssParser::selector in QueryPath 6

Same name and namespace in other branches
  1. 7.3 QueryPath/CssParser.php \CssParser::selector()
  2. 7.2 QueryPath/CssParser.php \CssParser::selector()
1 call to CssParser::selector()
CssParser::parse in QueryPath/CssParser.php

File

QueryPath/CssParser.php, line 154

Class

CssParser

Code

private function selector() {
  if ($this->DEBUG) {
    print "SELECTOR{$this->scanner->position()}\n";
  }
  $this
    ->consumeWhitespace();
  $this
    ->simpleSelectors();
  $this
    ->combinator();
}