8 references to Normal
Microsoft.CodeAnalysis.Workspaces (8)
CodeCleanup\AbstractCodeCleanerService.cs (8)
242
if (spanMarkerType == SpanMarkerType.
Normal
)
258
if (spanMarkerType == SpanMarkerType.
Normal
)
286
var startMarker = new SpanMarker(type: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.
Normal
,
287
oppositeMarkerType: (nextToken.RawKind == 0) ? SpanMarkerType.EndOfFile : SpanMarkerType.
Normal
);
289
var endMarker = new SpanMarker(type: (nextToken.RawKind == 0) ? SpanMarkerType.EndOfFile : SpanMarkerType.
Normal
,
290
oppositeMarkerType: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.
Normal
);
659
public SpanMarker(SpanMarkerType type = SpanMarkerType.
Normal
, SpanMarkerType oppositeMarkerType = SpanMarkerType.
Normal
)