6 references to BeginningOfFile
Microsoft.CodeAnalysis.Workspaces (6)
CodeCleanup\AbstractCodeCleanerService.cs (6)
191if (nextTokenMarker.OppositeMarkerType == SpanMarkerType.BeginningOfFile) 217if (hasMultiplePreviousToken && previousTokenMarker.Type == SpanMarkerType.BeginningOfFile) 256Contract.ThrowIfTrue(spanMarkerType == SpanMarkerType.BeginningOfFile); 287var startMarker = new SpanMarker(type: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.Normal, 291oppositeMarkerType: (previousToken.RawKind == 0) ? SpanMarkerType.BeginningOfFile : SpanMarkerType.Normal); 442return startMarker.Type == SpanMarkerType.BeginningOfFile && endMarker.Type == SpanMarkerType.EndOfFile;