(options: RHelpProviderOptions)
| 27 | private readonly pkgListener?: () => void; |
| 28 | |
| 29 | public constructor(options: RHelpProviderOptions){ |
| 30 | this.rPath = options.rPath || 'R'; |
| 31 | this.cwd = options.cwd; |
| 32 | this.pkgListener = options.pkgListener; |
| 33 | this.cp = this.launchRHelpServer(); |
| 34 | } |
| 35 | |
| 36 | public async refresh(): Promise<void> { |
| 37 | this.cp.dispose(); |
nothing calls this directly
no test coverage detected