File tree 3 files changed +9
-4
lines changed
3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -106,3 +106,7 @@ All notable changes to the "php-namespace-resolver" extension will be documented
106
106
## 0.5.1
107
107
108
108
- show output panel when phpcommand fails
109
+
110
+ ## 0.5.3
111
+
112
+ - allow the extension to work regardless of parsing errors
Original file line number Diff line number Diff line change 2
2
"name" : " php-namespace-resolver" ,
3
3
"displayName" : " PHP Namespace Resolver" ,
4
4
"description" : " Import and expand php namespaces" ,
5
- "version" : " 0.5.2 " ,
5
+ "version" : " 0.5.3 " ,
6
6
"publisher" : " ctf0" ,
7
7
"author" : " ctf0" ,
8
8
"repository" : " https://github.com/ctf0/PHP-Namespace-Resolver" ,
Original file line number Diff line number Diff line change @@ -3,9 +3,10 @@ import * as vscode from 'vscode';
3
3
4
4
const Parser = new PhpParser . Engine ( {
5
5
parser : {
6
- locations : true ,
7
- extractDoc : true ,
8
- extractTokens : true ,
6
+ locations : true ,
7
+ extractDoc : true ,
8
+ extractTokens : true ,
9
+ suppressErrors : true ,
9
10
} ,
10
11
ast : {
11
12
withPositions : true ,
You can’t perform that action at this time.
0 commit comments