8 references to Normal
Microsoft.CodeAnalysis.Workspaces (8)
CodeCleanup\AbstractCodeCleanerService.cs (8)
243
if (spanMarkerType == SpanMarkerType.
Normal
)
259
if (spanMarkerType == SpanMarkerType.
Normal
)
287
var startMarker = new SpanMarker(type: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.
Normal
,
288
oppositeMarkerType: (nextToken.RawKind == 0) ? SpanMarkerType.EndOfFile : SpanMarkerType.
Normal
);
290
var endMarker = new SpanMarker(type: (nextToken.RawKind == 0) ? SpanMarkerType.EndOfFile : SpanMarkerType.
Normal
,
291
oppositeMarkerType: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.
Normal
);
660
public SpanMarker(SpanMarkerType type = SpanMarkerType.
Normal
, SpanMarkerType oppositeMarkerType = SpanMarkerType.
Normal
)