Searched refs:getEndLine (Results 1 – 16 of 16) sorted by relevance
/PHP-Parser/lib/PhpParser/ |
H A D | Token.php | 15 public function getEndLine(): int { function in PhpParser\\Token
|
H A D | Lexer.php | 107 'endLine' => $lastToken->getEndLine(), 114 $tokens[] = new Token(0, "\0", $lastToken->getEndLine(), $lastToken->getEndPos());
|
H A D | Error.php | 47 public function getEndLine(): int { function in PhpParser\\Error 136 $this->getEndLine(), $this->getEndColumn($code)
|
H A D | Node.php | 49 public function getEndLine(): int; function
|
H A D | NodeAbstract.php | 48 public function getEndLine(): int { function in PhpParser\\NodeAbstract
|
H A D | Comment.php | 79 public function getEndLine(): int { function in PhpParser\\Comment
|
H A D | NodeDumper.php | 276 $end = $node->getEndLine();
|
H A D | ParserAbstract.php | 895 $token->getEndLine(), $token->getEndPos() - 1, $tokenPos) 897 $token->getEndLine(), $token->getEndPos() - 1, $tokenPos); 926 $commentEndLine = $comment->getEndLine();
|
/PHP-Parser/lib/PhpParser/NodeVisitor/ |
H A D | CommentAnnotatingVisitor.php | 51 $token->getEndLine(), $token->getEndPos() - 1, $pos); 57 $token->getEndLine(), $token->getEndPos() - 1, $pos);
|
/PHP-Parser/test/PhpParser/ |
H A D | ErrorTest.php | 16 $this->assertSame(11, $error->getEndLine()); 38 $this->assertSame(-1, $error->getEndLine());
|
H A D | CommentTest.php | 15 $this->assertSame(1, $comment->getEndLine());
|
H A D | CodeParsingTest.php | 73 $endLine = $node->getEndLine();
|
H A D | NodeAbstractTest.php | 58 $this->assertSame(11, $node->getEndLine());
|
/PHP-Parser/doc/component/ |
H A D | Error_handling.markdown | 20 . ' to ' . $e->getEndLine() . ':' . $e->getEndColumn($code);
|
H A D | Lexer.markdown | 68 * `endLine`: Line in which the node ends. Used by `$node->getEndLine()`.
|
/PHP-Parser/ |
H A D | CHANGELOG.md | 786 * Added `getComments()`, `getStartLine()`, `getEndLine()`, `getStartTokenPos()`, `getEndTokenPos()`,
|
Completed in 78 milliseconds