Home
last modified time | relevance | path

Searched refs:currentLineNb (Results 1 – 1 of 1) sorted by relevance

/template/strap/vendor/symfony/yaml/
H A DParser.php35 private $currentLineNb = -1; variable in Symfony\\Component\\Yaml\\Parser
118 $this->currentLineNb = -1;
222 …eption('You cannot define a mapping item when in a sequence.', $this->currentLineNb + 1, $this->cu…
251 …_slice($this->refsBeingParsed, $pos), [$refName])), $refName), $this->currentLineNb + 1, $this->cu…
425 …ow new ParseException('Multiple documents are not supported.', $this->currentLineNb + 1, $this->cu…
447 if (0 === $this->currentLineNb) {
547 $realCurrentLineNumber = $this->currentLineNb + $this->offset;
679 return (\count($this->lines) - 1) > $this->currentLineNb;
687 if ($this->currentLineNb >= $this->numberOfParsedLines - 1) {
691 $this->currentLine = $this->lines[++$this->currentLineNb];
[all …]