未验证 提交 e9093f04 编写于 作者: T Tanner Gooding 提交者: GitHub

Merge pull request #27679 from tannergooding/dev15.8-preview3

Adding a backwards compatbile constructor to ContainedLanguage for Tyepscript
......@@ -36,6 +36,29 @@ internal partial class ContainedLanguage<TPackage, TLanguageService> : AbstractC
// flickering.
private ITagAggregator<ITag> _bufferTagAggregator;
// <Previous release> BACKCOMPAT OVERLOAD -- DO NOT TOUCH
// This is required for the Typescript Language Service
public ContainedLanguage(
IVsTextBufferCoordinator bufferCoordinator,
IComponentModel componentModel,
AbstractProject project,
IVsHierarchy hierarchy,
uint itemid,
TLanguageService languageService,
SourceCodeKind sourceCodeKind,
IFormattingRule vbHelperFormattingRule)
: this(bufferCoordinator,
componentModel,
project,
hierarchy,
itemid,
languageService,
sourceCodeKind,
vbHelperFormattingRule,
workspace: null)
{
}
public ContainedLanguage(
IVsTextBufferCoordinator bufferCoordinator,
IComponentModel componentModel,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册