1 write to Type
Microsoft.CodeAnalysis.Workspaces (1)
CodeCleanup\AbstractCodeCleanerService.cs (1)
655this.Type = type;
10 references to Type
Microsoft.CodeAnalysis.Workspaces (10)
CodeCleanup\AbstractCodeCleanerService.cs (10)
174return TryCreateTextSpan(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), 175GetNextTokenEndPosition(nextTokenMarker.Type, nextToken), 194return TryCreateTextSpan(node.SpanStart, GetNextTokenEndPosition(nextTokenMarker.Type, nextToken), out span); 206return TryCreateTextSpan(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), node.Span.End, out span); 217if (hasMultiplePreviousToken && previousTokenMarker.Type == SpanMarkerType.BeginningOfFile) 220span = TextSpan.FromBounds(node.SpanStart, GetNextTokenEndPosition(nextTokenMarker.Type, nextToken)); 224if (hasMultipleNextToken && nextTokenMarker.Type == SpanMarkerType.EndOfFile) 227span = TextSpan.FromBounds(GetPreviousTokenStartPosition(previousTokenMarker.Type, previousToken), node.Span.End); 442return startMarker.Type == SpanMarkerType.BeginningOfFile && endMarker.Type == SpanMarkerType.EndOfFile;