13 references to RazorCodeBlockType
Microsoft.VisualStudio.LanguageServices (13)
Venus\ContainedDocument.cs (13)
837
var
blockType = GetRazorCodeBlockType(visibleSpan.Start);
838
if (blockType ==
RazorCodeBlockType
.Explicit)
847
var
blockType = GetRazorCodeBlockType(visibleSpan.Start);
848
if (blockType is
RazorCodeBlockType
.Block or
RazorCodeBlockType
.Helper)
958
var
type = GetRazorCodeBlockType(span.Start);
961
if (type ==
RazorCodeBlockType
.Block)
1017
private
RazorCodeBlockType
GetRazorCodeBlockType(int position)
1029
return
RazorCodeBlockType
.Implicit;
1037
return
RazorCodeBlockType
.Block;
1042
return
RazorCodeBlockType
.Explicit;
1047
return
RazorCodeBlockType
.Helper;
1050
return
RazorCodeBlockType
.Implicit;