@@ -167,19 +167,19 @@ export class CodeParser extends Plugin {
167
167
await this . handleChangeEvents ( )
168
168
} )
169
169
170
- this . on ( 'solidity' , 'compilerQueryParamsUpdated' , async ( file ) => {
170
+ this . on ( 'solidity' , 'compilerQueryParamsUpdated' , async ( ) => {
171
171
await this . call ( 'editor' , 'discardLineTexts' )
172
172
await this . call ( 'editor' , 'clearErrorMarkers' , [ this . currentFile ] )
173
173
await this . handleChangeEvents ( )
174
174
} )
175
175
176
- this . on ( 'solidity' , 'compilerAppParamsUpdated' , async ( file ) => {
176
+ this . on ( 'solidity' , 'compilerAppParamsUpdated' , async ( ) => {
177
177
await this . call ( 'editor' , 'discardLineTexts' )
178
178
await this . call ( 'editor' , 'clearErrorMarkers' , [ this . currentFile ] )
179
179
await this . handleChangeEvents ( )
180
180
} )
181
181
182
- this . on ( 'solidity' , 'configFileChanged' , async ( file ) => {
182
+ this . on ( 'solidity' , 'configFileChanged' , async ( ) => {
183
183
await this . call ( 'editor' , 'discardLineTexts' )
184
184
await this . call ( 'editor' , 'clearErrorMarkers' , [ this . currentFile ] )
185
185
await this . handleChangeEvents ( )
0 commit comments