6 references to EndOfFile
Microsoft.CodeAnalysis.Workspaces (6)
CodeCleanup\AbstractCodeCleanerService.cs (6)
203
if (previousTokenMarker.OppositeMarkerType == SpanMarkerType.
EndOfFile
)
224
if (hasMultipleNextToken && nextTokenMarker.Type == SpanMarkerType.
EndOfFile
)
240
Contract.ThrowIfTrue(spanMarkerType == SpanMarkerType.
EndOfFile
);
288
oppositeMarkerType: (nextToken.RawKind == 0) ? SpanMarkerType.
EndOfFile
: SpanMarkerType.Normal);
290
var endMarker = new SpanMarker(type: (nextToken.RawKind == 0) ? SpanMarkerType.
EndOfFile
: SpanMarkerType.Normal,
442
return startMarker.Type == SpanMarkerType.BeginningOfFile && endMarker.Type == SpanMarkerType.
EndOfFile
;