Merge pull request #279 from TysonAndre/misc-nits

Fix typo, remove unused 'use' statement
This commit is contained in:
Rob Lourens 2019-02-17 10:30:57 -08:00 коммит произвёл GitHub
Родитель c2d332e25b 4058fa7a3b
Коммит 2676462484
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -48,7 +48,6 @@ use Microsoft\PhpParser\Node\Expression\{
Variable,
YieldExpression
};
use Microsoft\PhpParser\Node\FunctionHeader;
use Microsoft\PhpParser\Node\StaticVariableDeclaration;
use Microsoft\PhpParser\Node\ClassConstDeclaration;
use Microsoft\PhpParser\Node\DeclareDirective;
@ -1357,7 +1356,7 @@ class Parser {
if ($isAnonymous && isset($functionDeclaration->name)) {
// Anonymous functions should not have names
$functionDeclaration->name = new SkippedToken($functionDeclaration->name); // TODO instaed handle this during post-walk
$functionDeclaration->name = new SkippedToken($functionDeclaration->name); // TODO instead handle this during post-walk
}
$functionDeclaration->openParen = $this->eat1(TokenKind::OpenParenToken);