(extension: IExtension)
| 248 | } |
| 249 | |
| 250 | private isInactive(extension: IExtension): boolean { |
| 251 | if (this._inactive && typeof this._inactive === 'function') { |
| 252 | return this._inactive(extension); |
| 253 | } |
| 254 | return false; |
| 255 | } |
| 256 | |
| 257 | public splitLanguagesExts( |
| 258 | extensions: IExtension[] |