diff vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 5fb285c0d0e3
children 129ea1e6d783
line wrap: on
line diff
--- a/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php	Thu Apr 26 11:26:54 2018 +0100
+++ b/vendor/nikic/php-parser/lib/PhpParser/ParserAbstract.php	Tue Jul 10 15:07:59 2018 +0100
@@ -109,8 +109,6 @@
 
     /** @var ErrorHandler Error handler */
     protected $errorHandler;
-    /** @var Error[] Errors collected during last parse */
-    protected $errors;
     /** @var int Error state, used to avoid error floods */
     protected $errorState;
 
@@ -129,7 +127,6 @@
      */
     public function __construct(Lexer $lexer, array $options = []) {
         $this->lexer = $lexer;
-        $this->errors = [];
 
         if (isset($options['throwOnError'])) {
             throw new \LogicException(