private function CssParser::selector in QueryPath 6
Same name and namespace in other branches
- 7.3 QueryPath/CssParser.php \CssParser::selector()
 - 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
Code
private function selector() {
  if ($this->DEBUG) {
    print "SELECTOR{$this->scanner->position()}\n";
  }
  $this
    ->consumeWhitespace();
  $this
    ->simpleSelectors();
  $this
    ->combinator();
}