Searched refs:start (Results 1 – 11 of 11) sorted by relevance
38 private function getPreviousNonSpaceToken(array $tokens, int $start): ?Token { argument39 for ($i = $start - 1; $i >= 0; --$i) {
82 private function getPreviousNonSpaceToken(array $tokens, int $start): ?Token { argument83 for ($i = $start - 1; $i >= 0; --$i) {
275 $start = $node->getStartLine();280 $start .= ':' . $this->toColumn($this->code, $node->getStartFilePos());283 return "[$start - $end]";
778 $start = $newlineAtStart ? '(?:(?<=\n)|\A)' : '(?<=\n)';780 $regex = '/' . $start . '([ \t]*)(' . $end . ')?/';
7 …formation is available depends on the origin of the error. At a minimum the start line of the error
74 Note that `start`/`end` here are closed rather than half-open ranges. This means that a node consis…
425 elements at the start of a list.749 * Added support for inserting at the start of list nodes in formatting-preserving pretty printer.761 * Added start token offsets to comments.1131 * Added start file offset information to `Comment` nodes.1162 * A shebang line like `#!/usr/bin/env php` is now allowed at the start of a namespaced file.
495 Responsibility for determining start and end attributes for nodes has been moved from the lexer to …531 …* The deprecated `Error` constructor taking a start line has been removed. Pass `['startLine' => $…
403 We start off with the following base code:450 Now lets start with the main code, the `NamespaceConverter`. One thing it needs to do
1112 $start = $atStart ? '(?:^|[\r\n])[ \t]*' : '[\r\n][ \t]*';1114 && preg_match('/' . $start . $label . '(?:$|[^_A-Za-z0-9\x80-\xff])/', $string);
130 start:
Completed in 77 milliseconds