/home/techb158/dev.balacoffee.com/vendor/nikic/php-parser/lib/PhpParser
NameSizeModeActions
Builder/-0755rm
Comment/-0755rm
ErrorHandler/-0755rm
Internal/-0755rm
Lexer/-0755rm
Node/-0755rm
NodeVisitor/-0755rm
Parser/-0755rm
PrettyPrinter/-0755rm
Builder.php2030644editdlrm
BuilderFactory.php111150644editdlrm
BuilderHelpers.php97650644editdlrm
Comment.php75460644editdlrm
ConstExprEvaluationException.php860644editdlrm
ConstExprEvaluator.php92700644editdlrm
Error.php50420644editdlrm
ErrorHandler.php2940644editdlrm
JsonDecoder.php33750644editdlrm
Lexer.php240790644editdlrm
NameContext.php99230644editdlrm
Node.php39750644editdlrm
NodeAbstract.php51480644editdlrm
NodeDumper.php68510644editdlrm
NodeFinder.php24520644editdlrm
NodeTraverser.php105920644editdlrm
NodeTraverserInterface.php6290644editdlrm
NodeVisitor.php20260644editdlrm
NodeVisitorAbstract.php4380644editdlrm
Parser.php6280644editdlrm
ParserAbstract.php422140644editdlrm
ParserFactory.php28510644editdlrm
PrettyPrinterAbstract.php639710644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/nikic/php-parser/lib/PhpParser/ParserFactory.php (2851B)
getLexerOptions())); } /** * Create a parser targeting the host PHP version, that is the PHP version we're currently * running on. This parser will not use any token emulation. * * All supported lexer attributes (comments, startLine, endLine, startTokenPos, endTokenPos, * startFilePos, endFilePos) will be enabled. */ public function createForHostVersion(): Parser { return new Php7(new Lexer($this->getLexerOptions())); } private function getLexerOptions(): array { return ['usedAttributes' => [ 'comments', 'startLine', 'endLine', 'startTokenPos', 'endTokenPos', 'startFilePos', 'endFilePos', ]]; } }