Lines Matching refs:parser
110 $parser = $this->makeParser($name);
111 $root = $parser->parse($string);
123 $this->sourceParser = $parser; // used for error messages
389 $parser = $this->makeParser($realPath);
390 $root = $parser->parse(file_get_contents($realPath));
417 $this->compileImportedProps($top, $parentBlock, $out, $parser, $dir);
419 return [true, $bottom, $parser, $dir];
1059 $block->parser->throwError("{$prop[1][0]} is undefined", $block->count);
1138 [, $bottom, $parser, $importDir] = $import;
1139 $this->compileImportedProps($bottom, $block, $out, $parser, $importDir);
1144 $block->parser->throwError("unknown op: $prop[0]\n", $block->count);
1713 $parser = new Parser(__METHOD__);
1716 $parser->count = 0;
1717 $parser->buffer = (string)$strValue;
1718 if (!$parser->propertyValue($value)) {
1733 $parser = new Parser($name);
1734 $parser->writeComments = $this->preserveComments;
1736 return $parser;