public CPlusPlusLanguageService() { IndentationStrategy = new CppIndentationStrategy(); clangAccessJobRunner = new JobRunner(); Task.Factory.StartNew(() => { clangAccessJobRunner.RunLoop(new CancellationToken()); }); }
public CPlusPlusLanguageService() { IndentationStrategy = new CppIndentationStrategy(); intellisenseJobRunner = new JobRunner(); clangAccessJobRunner = new JobRunner(); Task.Factory.StartNew(() => { intellisenseJobRunner.RunLoop(new CancellationToken()); }); Task.Factory.StartNew(() => { clangAccessJobRunner.RunLoop(new CancellationToken()); }); }