(
configHandler: ConfigHandler,
private readonly ide: IDE,
private readonly messenger?: IMessenger<ToCoreProtocol, FromCoreProtocol>,
)
| 184 | private githubToken?: string; |
| 185 | |
| 186 | constructor( |
| 187 | configHandler: ConfigHandler, |
| 188 | private readonly ide: IDE, |
| 189 | private readonly messenger?: IMessenger<ToCoreProtocol, FromCoreProtocol>, |
| 190 | ) { |
| 191 | this.ideInfoPromise = this.ide.getIdeInfo(); |
| 192 | this.isInitialized = this.init(configHandler); |
| 193 | } |
| 194 | |
| 195 | setGithubToken(token: string) { |
| 196 | this.githubToken = token; |
nothing calls this directly
no test coverage detected