1 implementation of GetStartPoint
Microsoft.VisualStudio.LanguageServices.Implementation (1)
CodeModel\AbstractCodeModelService.cs (1)
527public VirtualTreePoint? GetStartPoint(SyntaxNode node, LineFormattingOptions options, EnvDTE.vsCMPart? part)
4 references to GetStartPoint
Microsoft.VisualStudio.LanguageServices (2)
Venus\ContainedLanguageCodeSupport.cs (2)
69var point = codeModel.GetStartPoint(typeNode, options, EnvDTE.vsCMPart.vsCMPartBody); 280var navigationPoint = codeModel.GetStartPoint(memberNode, options, EnvDTE.vsCMPart.vsCMPartNavigate);
Microsoft.VisualStudio.LanguageServices.Implementation (2)
CodeModel\InternalElements\AbstractCodeElement.cs (2)
153var point = CodeModelService.GetStartPoint(LookupNode(), options); 181var point = CodeModelService.GetStartPoint(LookupNode(), options, part);