6 references to EndOfFile
Microsoft.CodeAnalysis.Workspaces (6)
CodeCleanup\AbstractCodeCleanerService.cs (6)
202
if (previousTokenMarker.OppositeMarkerType == SpanMarkerType.
EndOfFile
)
223
if (hasMultipleNextToken && nextTokenMarker.Type == SpanMarkerType.
EndOfFile
)
239
Contract.ThrowIfTrue(spanMarkerType == SpanMarkerType.
EndOfFile
);
287
oppositeMarkerType: (nextToken.RawKind == 0) ? SpanMarkerType.
EndOfFile
: SpanMarkerType.Normal);
289
var endMarker = new SpanMarker(type: (nextToken.RawKind == 0) ? SpanMarkerType.
EndOfFile
: SpanMarkerType.Normal,
441
return startMarker.Type == SpanMarkerType.BeginningOfFile && endMarker.Type == SpanMarkerType.
EndOfFile
;