13 references to RazorCodeBlockType
Microsoft.VisualStudio.LanguageServices (13)
Venus\ContainedDocument.cs (13)
840
var
blockType = GetRazorCodeBlockType(visibleSpan.Start);
841
if (blockType ==
RazorCodeBlockType
.Explicit)
850
var
blockType = GetRazorCodeBlockType(visibleSpan.Start);
851
if (blockType is
RazorCodeBlockType
.Block or
RazorCodeBlockType
.Helper)
961
var
type = GetRazorCodeBlockType(span.Start);
964
if (type ==
RazorCodeBlockType
.Block)
1020
private
RazorCodeBlockType
GetRazorCodeBlockType(int position)
1032
return
RazorCodeBlockType
.Implicit;
1040
return
RazorCodeBlockType
.Block;
1045
return
RazorCodeBlockType
.Explicit;
1050
return
RazorCodeBlockType
.Helper;
1053
return
RazorCodeBlockType
.Implicit;