PATH:
opt
/
cpanel
/
ea-wappspector
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
<?php declare(strict_types=1); namespace PhpParser; /** * A PHP token. On PHP 8.0 this extends from PhpToken. */ class Token extends Internal\TokenPolyfill { /** Get (exclusive) zero-based end position of the token. */ public function getEndPos(): int { return $this->pos + \strlen($this->text); } /** Get 1-based end line number of the token. */ public function getEndLine(): int { return $this->line + \substr_count($this->text, "\n"); } }
[+]
..
[+]
Parser
[-] Lexer.php
[open]
[+]
Comment
[-] Builder.php
[open]
[-] PrettyPrinterAbstract.php
[open]
[-] Token.php
[open]
[-] PrettyPrinter.php
[open]
[-] NodeDumper.php
[open]
[+]
PrettyPrinter
[-] BuilderFactory.php
[open]
[+]
ErrorHandler
[-] NodeVisitor.php
[open]
[+]
Internal
[-] NameContext.php
[open]
[-] Parser.php
[open]
[-] Comment.php
[open]
[-] JsonDecoder.php
[open]
[-] Modifiers.php
[open]
[+]
NodeVisitor
[-] compatibility_tokens.php
[open]
[-] Node.php
[open]
[-] PhpVersion.php
[open]
[-] ParserFactory.php
[open]
[-] NodeTraverserInterface.php
[open]
[-] ConstExprEvaluator.php
[open]
[-] NodeTraverser.php
[open]
[-] ParserAbstract.php
[open]
[-] NodeAbstract.php
[open]
[-] NodeFinder.php
[open]
[+]
Builder
[-] Error.php
[open]
[-] ConstExprEvaluationException.php
[open]
[-] NodeVisitorAbstract.php
[open]
[-] BuilderHelpers.php
[open]
[+]
Lexer
[+]
Node
[-] ErrorHandler.php
[open]