Lines Matching refs:currentLineNb
33 private $currentLineNb = -1; variable in Symfony\\Component\\Yaml\\Parser
123 $this->currentLineNb = -1;
213 …ception('You cannot define a mapping item when in a sequence', $this->currentLineNb + 1, $this->cu…
242 …ray_slice($this->refsBeingParsed, $pos)), $refName, $refName), $this->currentLineNb + 1, $this->cu…
361 …ow new ParseException('Multiple documents are not supported.', $this->currentLineNb + 1, $this->cu…
383 if (0 === $this->currentLineNb) {
476 $realCurrentLineNumber = $this->currentLineNb + $this->offset;
606 if ($this->currentLineNb >= \count($this->lines) - 1) {
610 $this->currentLine = $this->lines[++$this->currentLineNb];
622 if ($this->currentLineNb < 1) {
626 $this->currentLine = $this->lines[--$this->currentLineNb];
653 … \array_slice($this->refsBeingParsed, $pos)), $value, $value), $this->currentLineNb + 1, $this->cu…
656 …seException(sprintf('Reference "%s" does not exist.', $value), $this->currentLineNb + 1, $this->cu…
913 return ($this->offset + $this->currentLineNb) >= ($this->totalNumberOfLines - 1);