Home
last modified time | relevance | path

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

/plugin/findologicxmlexport/vendor/symfony/yaml/
H A DParser.php118 return $this->getRealCurrentLineNb();
162 Inline::initialize($flags, $this->getRealCurrentLineNb(), $this->filename);
187 … $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
199 $data[] = $this->parseBlock($this->getRealCurrentLineNb(), $block, $flags);
220 $e->setParsedLine($this->getRealCurrentLineNb() + 1);
265 … $parsed = $this->parseBlock($this->getRealCurrentLineNb() + 1, $value, $flags);
322 $realCurrentLineNbKey = $this->getRealCurrentLineNb();
373 $e->setParsedLine($this->getRealCurrentLineNb() + 1);
474 public function getRealCurrentLineNb(): int function in Symfony\\Component\\Yaml\\Parser
717 Inline::$parsedLineNumber = $this->getRealCurrentLineNb();
[all …]
/plugin/combo/vendor/symfony/yaml/
H A DParser.php155 throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
158 Inline::initialize($flags, $this->getRealCurrentLineNb(), $this->filename);
163 throw new ParseException('You cannot define a sequence item when in a mapping.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
174 throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
180 $currentLineNumber = $this->getRealCurrentLineNb();
188 $data[] = $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true) ?? '', $flags);
192 $this->parseBlock($this->getRealCurrentLineNb() + 1, $this->getNextEmbedBlock(null, true), $flags)
208 $data[] = $this->parseBlock($this->getRealCurrentLineNb(), $block, $flags);
229 $e->setParsedLine($this->getRealCurrentLineNb() + 1);
236 throw new ParseException((is_numeric($key) ? 'Numeric' : 'Non-string').' keys are not supported. Quote your evaluable mapping keys instead.', $this->getRealCurrentLineNb()
545 public function getRealCurrentLineNb(): int global() function in Symfony\\Component\\Yaml\\Parser
[all...]
/plugin/findologicxmlexport/vendor/symfony/yaml/Command/
H A DLintCommand.php116 throw new ParseException($message, $this->getParser()->getRealCurrentLineNb() + 1);
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php140 throw new ParseException($message, $this->getParser()->getRealCurrentLineNb() + 1);